RE: Introducing the Coding ChallengeYou are viewing a single comment's thread from:Introducing the Coding ChallengeView the full contextmonkonacid (25) in coding-challenge • 7 years ago Probably the shortest FizzBuzz code for(i=0;i<1e2;) console.log((++i%3?"":"Fizz")+(i%5?"":"Buzz")||i) coding-challenge
You can go even shorter ;) But I mean the idea is to have it nice and readable and thought through :P
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Not the best looking code, however you could add some comments... :D
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit