3 lines
96 B
Text
3 lines
96 B
Text
|
|
for i from 1 to 100
|
||
|
|
console.log(['Fizz' unless i % 3] + ['Buzz' unless i % 5] or String(i))
|