Skip to content

Instantly share code, notes, and snippets.

View notblizzard's full-sized avatar
❄️
arctic fox

Blizzard notblizzard

❄️
arctic fox
  • Kentucky
  • 10:11 (UTC -04:00)
View GitHub Profile
@notblizzard
notblizzard / Fizzbuzz.js
Last active November 5, 2015 14:17 — forked from anonymous/Fizzbuzz
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);