Multiple choice technology web technology

In JavaScript, capital letters are different from lowercase letters ?

  1. Not on windows platforms

  2. Yes

  3. No

  4. Not on Linux Platform

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

JavaScript is a case-sensitive language. 'MyVar', 'myVar', and 'MYVAR' are three different variables. This applies to variable names, function names, keywords, and all identifiers in JavaScript code.