1. What are the types of variable in JavaScript? Ans: Two types of variables Local variable Global variable 2. What is the use of typeof in JavaScript? Ans: It is used to find the datatype of variable. 3. How to create Objects in JavaScript? Ans: Three ways to create Objects in JavaScript. By object literal. By creating instance of object. By object constructor. 4. How to create an Array in JavaScript? Ans: Three ways to create Array in JavaScript. By array literal. By...