FizzBuzz

Coding Challenge

This challenge is an excellent way to understand how JavaScript works behind the scenes. The goal is to list numbers, replacing every 3rd number with "Fizz", every 5th number with "Buzz", and number divisible by both 3 and 5 with "FizzBuzz".

This deceptively tricky task can leave some scratching their heads, and it teaches us that just because your code isn't throwing errors at you does not necessarily mean it's going to work the way you hope. See "The Code" section to better understand how this works.

  • CSS and Bootstrap Layout
  • JavaScript Fundamentals
  • JavaScript Loops
  • JavaScript DOM Manipulation
  • Boolean Logic

Tech Stack: