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