1.
Which of the following is a correct variable declaration in JavaScript?
2.
In JavaScript, is 'myVariable' the same as 'myvariable'?
3.
How does JavaScript treat 'Function()' and 'function()'?
4.
Which of the following will create a case sensitivity error in JavaScript?
5.
How does JavaScript differentiate between 'myVar' and 'MyVar'?
6.
Which of the following function names are considered identical in JavaScript?
7.
What will be the output of the following code? let name = 'Alice'; let Name = 'Bob'; console.log(name, Name);
8.
Can JavaScript variables 'example' and 'Example' be declared in the same scope?
9.
What is the significance of case sensitivity in JavaScript?
10.
How does JavaScript interpret the following? let varName = 5; let VarName = 10; console.log(varName, VarName);