Challenge: Loops in JavaScript

Solve tasks regarding loops in JavaScript.

We'll cover the following

Task 1

Write a loop that counts from 11 to 100100 and checks if the number is a multiple of 33 or 55. If it’s a multiple of 33, it should log “Fizz” to the console. If it’s a multiple of 55, it should log “Buzz” to the console. If it’s a multiple of 33 and 55, it should log “FizzBuzz” to the console, and if it’s a multiple of neither, it should just log the number to the console.

Get hands-on with 1200+ tech skills courses.