Skip to content

Instantly share code, notes, and snippets.

@jaseemabid
Created June 27, 2013 19:53
Show Gist options
  • Save jaseemabid/5879795 to your computer and use it in GitHub Desktop.
Save jaseemabid/5879795 to your computer and use it in GitHub Desktop.
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".
# FizzBuzz :)
for i in [1 .. 100]
out = ""
out = out + "Fizz" if i%3 == 0
out = out + "Buzz" if i%5 == 0
console.log out || i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment