Question 1: Functions in JavaScript starts with the keyword:
functionQuestion 2: Which of the follow is a not a valid JavaScript primitive data type?
NumericQuestion 3: Which of the follow ways to declare an array is correct?
var color;
Question 4: What will be the value of sum?
var a = 4
var b = "5"
var sum = a + b
Question 5: When do we use bracket notations?
When we are accessing properties of objects that contains operators