Skip to content

Instantly share code, notes, and snippets.

@edward70
Created April 12, 2021 08:00
Show Gist options
  • Save edward70/42649b64cd274e0240ff7dcd1bf5b8db to your computer and use it in GitHub Desktop.
Save edward70/42649b64cd274e0240ff7dcd1bf5b8db to your computer and use it in GitHub Desktop.
fizzbuzz codegolf
for(i=1;i<101;i++)alert((i%3?'':'fizz')+(i%5?'':'buzz')||i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment