RE: DeletedYou are viewing a single comment's thread from:DeletedView the full contextmonkonacid (25) in programming • 7 years ago Probably the shortest FizzBuzz code for(i=0;i<1e2;) console.log((++i%3?"":"Fizz")+(i%5?"":"Buzz")||i) programming