RE: Introducing the Coding Challenge
Probably the shortest FizzBuzz code
for(i=0;i<1e2;) console.log((++i%3?"":"Fizz")+(i%5?"":"Buzz")||i)
RE: Introducing the Coding Challenge