Comments
// This comment occupies a line of its own
/*
An example with two messages.
This is a multiline comment.
*/
Debugger Debugger pauses the code
function hello(name) {
let phrase = `Hello, ${name}!`;
debugger; // <-- the debugger stops here
say(phrase);
}
$0 Reference to the select element in dev tools