Skip to content

Instantly share code, notes, and snippets.

@notblizzard
Forked from anonymous/Fizzbuzz
Last active November 5, 2015 14:17
Show Gist options
  • Save notblizzard/b9bafa52f01d437ca67f to your computer and use it in GitHub Desktop.
Save notblizzard/b9bafa52f01d437ca67f to your computer and use it in GitHub Desktop.
for (var Counter = 0; Counter < 101; Counter++) {
if (Counter % 15 === 0) {
console.log("FizzBuzz");
} else if (Counter % 5 === 0) {
console.log("Fizz");
} else if (Counter % 3 === 0) {
console.log("Buzz");
} else {
console.log(Counter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment