← Back to context

Comment by rrrx3

17 hours ago

https://github.com/enterprisequalitycoding/fizzbuzzenterpris...

On the other spectrum, shortest JS fizzbuzz (62 characters):

    for(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'

Anyone can beat it? (any language accepted)