11.
Is 'myfunction' the same as 'myFunction' in JavaScript?
12.
What happens if you try to declare two variables with the same name but different cases?
13.
How should constants be declared to avoid confusion with variable names?
14.
Which of the following statements is true about case sensitivity in JavaScript?
15.
How will JavaScript handle 'VarName' and 'varName' in the same scope?
16.
What is the best practice for naming variables to avoid issues with case sensitivity?
17.
Can a function and a variable have the same name with different cases in JavaScript?
18.
What is the recommended naming convention for JavaScript functions?
19.
How does JavaScript differentiate between 'myFunction()' and 'myfunction()'?
20.
What is the effect of case sensitivity on debugging JavaScript code?