Comments
// This is a comment, it will be ignored by the interpreter
var a = "this is a variable defined in a statement";/*
This is a multi-line comment,
it will be ignored by the interpreter
*/
var a = "this is a variable defined in a statement";Mark me as a comment
or I'll throw an error/*
Mark me as a comment
or I'll throw an error
*/assert(true);Last updated