Skip to content

Instantly share code, notes, and snippets.

@ryoungz
Last active October 13, 2015 19:37
Show Gist options
  • Save ryoungz/4245661 to your computer and use it in GitHub Desktop.
Save ryoungz/4245661 to your computer and use it in GitHub Desktop.
FizzBuzz in JS
var maxNum = 100;
for (i = 1; i <= maxNum; i++) {
if (i % 15 === 0) {
console.log("FizzBuzz");
} else if (i % 3 === 0){
console.log("Fizz");
} else if (i % 5 === 0) {
console.log("Buzz");
} else {
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment