In JavaScript, comments can span a single or multiple lines.

Use "//" to create a single-line comments and "/* ... */" to create a multi-line comment

// Single line comment

/*
    This comment
    is on
    multiple lines
*/