FizzBuzz: A Coding Project
An application that solves the common Fizz Buzz problem.
Traditionally, FizzBuzz prints a list of integers from 1 to 100. If the number is divisble by 3, the number is replaced by "Fizz". If the number is divisble by 5, the number is replaced by "Buzz". If a number is divisble by both 3 and 5, the number is replaced by "FizzBuzz".
This app allows you to set the Fizz and Buzz values you would like to use.
- CSS and Bootstrap Layout
- Javascript Fundamentals
- Javascript Loops
- Javascript Functions
- Javascript Dom Manipulation
- Javascript If/Then/Else
- Javascript Boolean Logic