JavaScript is Case Senstive
A
Correct answer
Explanation
JavaScript is a case-sensitive programming language. This means that variables, functions, and other identifiers must be referenced with the exact same capitalization they were declared with. For example, 'myVariable' and 'MyVariable' are different identifiers.