Javascript Beginner Bootcamp (2020) ((full)) -

Computers are great at boring, repetitive tasks. Loops handle that.

let name = "Alex"; // This can change later const birthYear = 1995; // This will NEVER change console.log(name + " was born in " + birthYear); javascript beginner bootcamp (2020)

But before you build the next billion-dollar startup, you need to learn how to talk to the computer. Computers are great at boring, repetitive tasks

// Use the function let message = greetUser("Jess"); console.log(message); // Output: Hey Jess, welcome to 2020! Computers are great at boring