1.
What is the keyword used to declare variables in JavaScript?
2.
Which of the following is NOT a valid variable name in JavaScript?
3.
What happens if you declare a variable without initializing it in JavaScript?
4.
Which keyword is used to declare a constant variable in JavaScript?
5.
What is the scope of a variable declared using the let keyword in JavaScript?
6.
What will be the value of x after the following code executes: let x = 10; x += 5;?
7.
Which variable declaration is appropriate if you want a variable to hold a constant value throughout the program execution?
8.
What will be the output of the following code: console.log(typeof 'Hello');?
9.
Which data type is used to represent whole numbers in JavaScript?
10.
What is the value of x after the following code executes: let x = 5; x *= 2; x /= 3;?