Javascript Beginner Bootcamp (2020) Link
Try this:
// Count from 1 to 5 for (let i = 1; i <= 5; i++) console.log("Loop number: " + i); javascript beginner bootcamp (2020)
Let’s boot it up. Every programmer starts here. Open your Chrome browser, right-click anywhere on the page, and select "Inspect" . Then click the "Console" tab. Try this: // Count from 1 to 5
Use const by default. Only use let when you know the value needs to change. Module 3: Data Types (The Building Blocks) JavaScript understands different types of information. Here are the big four for beginners: i++) console.log("Loop number: " + i)
;