Skip to content

Instantly share code, notes, and snippets.

@lazypower
Created June 17, 2012 05:08
Show Gist options
  • Save lazypower/2943470 to your computer and use it in GitHub Desktop.
Save lazypower/2943470 to your computer and use it in GitHub Desktop.
fizbuzz
for (i = 1; i < 100; i++)
{
if( i % 5 === 0 && i % 3 === 0) {
console.log("fizbuzz");
}
else if (i % 3 == 0) {
console.log("buzz");
} else if (i%5 == 0) {
console.log("fiz");
}
else {
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment