comment js code code example
Example 1: comment in javascript
// single line comment
/* multiline comemnt
line 2
line 3
line 4 */
Example 2: js comment
//This does not effect the code.
var something = "But this does effect the code!";
Example 3: javascript comment
// For single line comment
/* For block of lines comment
...
...
*/
Example 4: comments in js
// comment sigle line