Comments
When you are writing code, you will find it useful to write notes that explain some piece of code, but are not actually executed. There are two styles of commenting that JavaScript provides: inline (on a single line) and multiline. The syntax for these are slightly different, with inline comments starting with two characters “//” followed by the comment. These are meant to be on the same line as the comment, and are used either to explain what is happening on a line of code, or to quickly keep a line from executing during debugging. Multiline comments begin with the “/**” characters and end with the “*/” characters. Multiline comments allow you to put more detail into an explanation, or remove a larger block of code from execution during ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access