Content
<aside> π
Practice exercises are optional and do not need to be submitted
</aside>
Write a simple JS application that prompts the user for his age and prints to the console:
child (0β12)teen (13β17)adult (18β64)senior (65+)Invalid ageWrite a simple JS application that prompts the user for two numbers (number1, number2) and prints different math calculations: addition, subtraction, multiplication, division and modulus
Rewrite the following code to switch case syntax:
const monthNumber = 3; // 1-12
let monthName;
if (monthNumber === 1) {
monthName = "January";
} else if (monthNumber === 2) {
monthName = "February";
} else if (monthNumber === 3) {
monthName = "March";
} else if (monthNumber === 4) {
monthName = "April";
} else if (monthNumber === 5) {
monthName = "May";
} else if (monthNumber === 6) {
monthName = "June";
} else if (monthNumber === 7) {
monthName = "July";
} else if (monthNumber === 8) {
monthName = "August";
} else if (monthNumber === 9) {
monthName = "September";
} else if (monthNumber === 10) {
monthName = "October";
} else if (monthNumber === 11) {
monthName = "November";
} else if (monthNumber === 12) {
monthName = "December";
} else {
monthName = "Invalid month number";
}
console.log(monthName);
This fun game teaches you how Git branches and merges work
https://learngitbranching.js.org/
Create a new account with one of the services you haven't used yet: Claude, Gemini, Grok, ChatGPT, or Perplexity. Try to use the chatbot for the day, how do you compare it to the one you got used to? think about the response quality, length, speed and the website UI.
To get the most out of ChatGPT, use the personalisation features in your settings:
Experiment with different instruction styles to find what works best for your learning style and workflow!

Found a mistake or have a suggestion? Let us know in the feedback form.