lesson task 1.1:
-Console log the current day of the week
-Console log 3 multiplied by 6
-Using the alert() method, alert your name, e.g. alert(“Marie”);
Lesson task 1.2 :
-Create a variable called animal and assign it the string value “frog”.
-Create a variable called delivered and assign it the boolean value true.
-Create a variable called score and assign it the number value 12.
-Create a variable called fullName and assign it the result of joining the string values “John” and “Smith.
-Use the typeof operator to find out the type of the fullName variable. Assing the result to a variable called nameType.
Lesson task 1.3:
-Given the following variable declaration var age = 10; write an if-else statement that checks if age is greater than or equal to 7. If it is, console log the string “Greater than or equal to 7”. If it is not, console log the string “Less than 7”.
-Given the following variable declaration var animal = “cat”; write an if-else-if-if statement that checks the value of animal. Check if animal is equal to “parrot”. If it is, console log the string “The animal has two legs”. Check if animal is equal to “cat”. If it is, console log the string “The animal has four legs”. If animal is neither “parrot” nor “cat”, console log the string “The animal has an unknown amount of legs”. Check your code by changing the value of the animal variable.