Javascript in 15 Days : 1st Review Day

March 6th, 2020

Hi all!

Today we will be having review day, for once a week, we will be reciting briefly what we have learned for the past 4 days, and I’ll go through it as fast as possible, and in the end, some optional challenges will be given to enhance your knowledge on taught subjects. If you haven’t seen Day 4, please click on the link below!

Javascript in 15 Days : Switch Case

Review

So, during our first day, we learned about pseudocode, which is a form of planning before we dive right into coding. On our second day, we learned about variables, declaration and data types, where there are 6 basic data types, the string, number, boolean, array, object, and null. On our third and fourth day, we learned about conditionals (if and switch-case statements). How to use it and popular test-cases on conditionals.

Additional Materials and Optional Tasks

So, weekends are coming right up, and I have a few tasks I wanted to share. Feel free to answer the below tasks and upload them to twitter using hashtags #reviewday1 #javascriptin30days. I’ll be giving my personal feedback on a weekly basis! Good luck!

Here are the following tasks:

  1. Declare room temperature with any number (in Celcius)
  2. Convert the following temperature to Fahrenheit and store it in variable “Fahrenheit”
  3. Set today’s date in three variables; date, month, year (all in numbers)
  4. Join those three variables into the following format: dd — month — year (the month in a string) using switch-case

That’s all! See you tomorrow!

Javascript in 15 Days : Loops