Skip to content

Instantly share code, notes, and snippets.

@nobleach
Created February 10, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nobleach/b212ae2d02bf8aed1066 to your computer and use it in GitHub Desktop.
Save nobleach/b212ae2d02bf8aed1066 to your computer and use it in GitHub Desktop.
FizzBuzz
for (var i = 1; i <= 100; i++) {
var x = '';
if(i%3===0) x += 'Fizz';
if(i%5===0) x += 'Buzz';
console.log(x=='' ? i : x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment