function comments javascript code example
Example 1: javascript comment
//This is a javascript single line comment
/*
And here is a
multiline comment
*/
Example 2: how to comment in javascript
/* this is a javascript comment
that is multi lines */
// This is a single line comment
Example 3: comment in js
// use '//'
Example 4: javascript comment
// For single line comment
/* For block of lines comment
...
...
*/