Which one of the following symbol is used for creating comments in the javascript:

Which one of the following symbol is used for creating comments in the javascript:

  1. \
  2. //
  3. * *\
  4. * */

2nd option is correct

1 Like

// this symbol is used for comment in JS
ex:

for(var i=0;i<n;i++){
//alert("Value of i is:",i);
{
1 Like