Basic Javascript concepts – vol 1
Comments in Javascript: There are two ways to comments on Javascript. Single line comment and multiline comment. To start with a single line comment in one line. here is the sample: //This is single-line comment Multiline comment means you can comment through two to more lines you want. sample is: /*This is multiline comment */ Variable in JavaScript: we can …