6 ms·
you can flip it and save a few bytes, but not valid fizzbuzz then: for(i=100;i--;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
by winrid 13d ago
you can flip it and save a few bytes, but not valid fizzbuzz then:
for(i=100;i--;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
- embedding-shape 13d ago> but not valid fizzbuzz then Well, if we let that requirement be broken, I'll present an even shorter JS version: 1
- winrid 13d agojust thought it was fun. thanks for your reply.