Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Comments

  • //
console.log("Start here")

// this is a comment

// console.log("This line is not in use")

console.log("Still working")  // But comment here

/*
Multi-line comment

console.log("Maybe with code")

*/

console.log("End here")
Start here
Still working
End here