Deleted

in programming •  7 years ago  (edited)

Deleted

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Hello,

Nice post.
How long have you been programming for?

For about 3 years now

Awesome,

I will keep watching your posts as i am just starting out and can use all the help i can get.

Probably the shortest FizzBuzz code

for(i=0;i<1e2;)
console.log((++i%3?"":"Fizz")+(i%5?"":"Buzz")||i)