Comments
There are two types of comments in JavaScript: line and block.
- Line comments begin with
//and end with an end-of-line character. - Block comments begin with
/*and end with*/.
Line comments can contain any characters except for the end-of-line character. However, a block comment cannot contain the sequence */ (such as in a regular expression). Therefore, the book recommends always using line comments instead of block comments.