JavaScript Naming Rules, Data Types, and Objects
Naming rules JavaScript naming rules are quite important, it has some specific conventions and restrictions. For example, variables and functions are often named using lower camel case (firstName). JavaScript is then case sensitive, so lastName and lastname are different variables. Comments can be single-line comments // or multi-line comments /* */. data type JavaScript’s basic … Read more