Javascript Assignments
Task 1: Declare a variable named number0 and give it any numeric value Print the type of number0 on console. hint: use typeof( ) to get the type Declare a variable named number1 and give it any numeric value greater than number0 Print the type of number1 on console. hint: use typeof( ) to get the type Print the sum of the two variables( number0 and number1 ) in console by using console.log( ) Print the difference of the two variables( number0 and number1 ) in console by using console.log( ) Print the product of the two variables( number0 and number1 ) in console by using console.log( ) Divide the numbers( number0 and number1 ) and print the result in the console by using console.log( ) Print the remainder when number0 is divided by number1 in console by ...