Skip to content

Instantly share code, notes, and snippets.

@mrdrozdov
Created April 30, 2015 18:15
Show Gist options
  • Save mrdrozdov/56f97077297ed9675682 to your computer and use it in GitHub Desktop.
Save mrdrozdov/56f97077297ed9675682 to your computer and use it in GitHub Desktop.
FizzBuzz in a Tweet
function fizzbuzz (n) {
var r = !(n % 3) ? 'Fizz' : ''
r += !(n % 5) ? 'Buzz' : ''
return r ? r : n
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment