JavaScript, 62 bytes
for(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
I think I this is the shortest Javascript solution now.
Mama Fun Roll
- 10k
- 1
- 38
- 47
Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack Exchangefor(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
I think I this is the shortest Javascript solution now.