Skip to content

Instantly share code, notes, and snippets.

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

Blizzard blizzarddreams

❄️
arctic fox
  • Kentucky
  • 08:23 (UTC -04:00)
View GitHub Profile
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);