Skip to content

Instantly share code, notes, and snippets.

@stevekinney
Created January 10, 2012 03:09
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 stevekinney/1586635 to your computer and use it in GitHub Desktop.
Save stevekinney/1586635 to your computer and use it in GitHub Desktop.
FizzBuzz in JavaScript
for (var i = 0; i <= 100; i++){
if (i % 3 === 0 && i % 5 === 0) {
document.write("FizzBuzz")
} else if (i % 3 === 0) {
document.write("Fizz")
} else if (i % 5 === 0) {
document.write("Buzz")
} else {
document.write(i)
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment