Skip to content

Instantly share code, notes, and snippets.

@agarmu
Created December 24, 2020 07:44
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 agarmu/decb606f596a3ee3da3a6ed180128ed6 to your computer and use it in GitHub Desktop.
Save agarmu/decb606f596a3ee3da3a6ed180128ed6 to your computer and use it in GitHub Desktop.
Fizzbuzz without conditionals πŸ™ƒ
let fizzbuzz = [
"\rfizzbuzz",
"",
"",
"\rfizz",
"",
"\rbuzz",
"\rfizz",
"",
"",
"\rfizz",
"\rbuzz",
"",
"\rfizz",
"",
""
]
for(let i = 0; i < 200; i++) {
console.log(`${i}${fizzbuzz[i%15]}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment