top of page
Javascript Beginner Bootcamp (2020) | Top 10 EXTENDED |
let hour = 14; // 2 PM if (hour < 12) console.log("Good morning, coder!"); else if (hour < 18) console.log("Good afternoon! Keep typing."); else console.log("Evening coding session? Nice.");
Got questions? Drop them in the comments. And yes — == vs === ? Always use === in 2020. You’ll thank me later. Share it with a friend who still thinks HTML is a programming language. javascript beginner bootcamp (2020)
// Use the function let message = greetUser("Jess"); console.log(message); // Output: Hey Jess, welcome to 2020! let hour = 14; // 2 PM if (hour < 12) console
bottom of page