hwo to add comment in js code example
Example 1: comment in js
// use '//'
Example 2: comment in JavaScript
// This is how you comment a single line in JavaScript
/*
This is how you comment
multiple lines in
JavaScript
*/
// use '//'
// This is how you comment a single line in JavaScript
/*
This is how you comment
multiple lines in
JavaScript
*/