// This is a comment, everything after is ignored.
console.log("I am Code");
/* This is also a comment. You use this for
* longer things that you want to say.
*/
console.log("So am I");
// The code inside the next comment will not run:
/*
console.log("I will not run.");
*/