The code from the Learn JavaScript the Hard Way module JavaScript Level 1 exercises. This is a mirror of the code I have in the book, so if you're struggling you can use this to compare against your attempts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

16 lines
282 B

// 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.");
*/