Table of Contents

About

Language - Comment in Javascript

Syntax

// This is a comment
/* This 
       one 
             also 
                   but on multiple lines
*/

var a = /* It can also appears in the middle of an expression */ 42;
console.log(a);