2 lines
86 B
CoffeeScript
2 lines
86 B
CoffeeScript
for i in [1..100]
|
|
console.log(['Fizz' if i % 3 is 0] + ['Buzz' if i % 5 is 0] or i)
|