Comments
Purpose of Comments
Single Line Comments
// This is one line commented out
console.log("This is underneath the comment and will run.");Multiple Line Comments
/*
multiple lines commented
out in a block
Remember that commented code will not run.
None of this code will run.
*/
console.log("Howdy");File Location
Practice
Last updated