Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 31, 2014 15:42
Show Gist options
  • Select an option

  • Save a1ip/0e793e5d3340c1656fce to your computer and use it in GitHub Desktop.

Select an option

Save a1ip/0e793e5d3340c1656fce to your computer and use it in GitHub Desktop.
Elegant JavaScript FizzBuzz solution from http://en.wikipedia.org/wiki/Bizz_buzz
for (var i=1; i<=100; i++) {
var string = '';
if (i % 3 == 0) {
string += 'Fizz';
}
if (i % 5 == 0) {
string += 'Buzz';
}
if (string == '') {
string += i;
}
console.log(string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment