Page 1 of 1

JavaScript is a case-sensitive language

Posted: Fri May 01, 2020 8:44 pm
by Otto
JavaScript is a case-sensitive language. This means that the language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters.

So the identifiers Time and TIME will convey different meanings in JavaScript.

NOTE − Care should be taken while writing variable and function names in JavaScript.

Re: JavaScript is a case-sensitive language

Posted: Fri May 01, 2020 9:02 pm
by acuellar
Thanks Otto