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.
 

8 lines
359 B

// You can give multiple things for console.log to print.
// Separate each thing with a comma.
console.log("Name:", 'Zed A. Shaw');
console.log("Age:", 43);
console.log("Feet Tall:", Math.floor(74 / 12));
console.log("And Inches:", 74 - (Math.floor(74 / 12) * 12));
console.log("Age * Height:", 43 * 74);
console.log("Age * Feet:", 43 * Math.floor(74 / 12));