Skip to content

Instantly share code, notes, and snippets.

@literat
Created March 11, 2020 11:04
Show Gist options
  • Save literat/6e8b068ca4c6164f7213e1c6b664d139 to your computer and use it in GitHub Desktop.
Save literat/6e8b068ca4c6164f7213e1c6b664d139 to your computer and use it in GitHub Desktop.
FizzBuzz
for(i=0;i++<100;console.log((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