Skip to content

Instantly share code, notes, and snippets.

@erikcox
Created October 22, 2014 20:41
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 erikcox/0eb141268526e9b07c3b to your computer and use it in GitHub Desktop.
Save erikcox/0eb141268526e9b07c3b to your computer and use it in GitHub Desktop.
FizzBuzz
function fizzBuzz(n) {
for (i = 0; i <= n; 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