Skip to content

Instantly share code, notes, and snippets.

@jahe
Created May 1, 2015 07:45
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 jahe/b89beb6a8c788d4a9be4 to your computer and use it in GitHub Desktop.
Save jahe/b89beb6a8c788d4a9be4 to your computer and use it in GitHub Desktop.
fizzbuzz function with 69 characters
function fizzbuzz(n){return((!(n%3)?'Fizz':'')+(!(n%5)?'Buzz':''))||n;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment