Fizzbuzz a Coding Challenge
The classic Coding challenge, written in JavaScript.
Instructions
Fizz buzz is a little coding game with a very simple premise. You count up and whenever you have
something divisible by 3 you say Fizz if you are count a number divisible by 5 you say
Buzz, and if you have a number divisble by both, you say Fizzbuzz!
Simple right? That's part of the beauty of it. The logic behind it isn't particularly complex, but to be
able to put it into code you have to understand how data is being processed relative to how it needs to
be outputted.
I went ahead and put together my version of Fizzbuzz. Feel free to play around with it and see what
patterns emerge as you play around with it.