Skip to content

Instantly share code, notes, and snippets.

@shepting
Created October 7, 2011 00:09
Show Gist options
  • Save shepting/1269087 to your computer and use it in GitHub Desktop.
Save shepting/1269087 to your computer and use it in GitHub Desktop.
FizzBuzz in Javascript
for (j=1;j<100;j++) {
if (!(j%3) && !(j%5)) {
console.log("FizzBuzz");
} else if (!(j%3)) {
console.log("Fizz");
} else if (!(j%5)){
console.log("Buzz");
} else {
console.log(j);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment