Skip to content

Instantly share code, notes, and snippets.

@azizpunjani
Last active August 29, 2015 14:24
Show Gist options
  • Save azizpunjani/e817be49264fd66a885e to your computer and use it in GitHub Desktop.
Save azizpunjani/e817be49264fd66a885e to your computer and use it in GitHub Desktop.
for(var i = 0; i < 100; i++) {
var output = [];
if (i % 3 == 0) output.push('Fizz');
if (i % 5 == 0) output.push('Buzz');
console.log(i, output.join(' '));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment