Skip to content

Instantly share code, notes, and snippets.

@immkavin-ranks
Created January 13, 2024 10:59
Show Gist options
  • Save immkavin-ranks/d8febe8dd5b26fe80bf20489ef7d73f4 to your computer and use it in GitHub Desktop.
Save immkavin-ranks/d8febe8dd5b26fe80bf20489ef7d73f4 to your computer and use it in GitHub Desktop.
FizzBuzz
for (let i = 1; i <= 100; i++) {
if (i % 3 === 0) {
if (i % 5 === 0) {
console.log("FizzBuzz")
}
else {
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