// a one line comment /* this is a longer, * multi-line comment */ /* You can't, however, /* nest comments */ SyntaxError */
var a = 2; let a = 2; const a = 2;
By Alex Albu