Javascript - Comments
About
Language - Comment in Javascript
Articles Related
Syntax
- Same rule than in CSS: See CSS - Comments
- and double slash
// 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);