Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 31, 2014 15:35
Show Gist options
  • Select an option

  • Save a1ip/5d02f1c0b1fd6205c7fa to your computer and use it in GitHub Desktop.

Select an option

Save a1ip/5d02f1c0b1fd6205c7fa to your computer and use it in GitHub Desktop.
Elegant CoffeeScript FizzBuzz solution from http://rosettacode.org/
for i in [1..100]
console.log(['Fizz' if i % 3 is 0] + ['Buzz' if i % 5 is 0] or i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment