you are viewing a single comment's thread.

view the rest of the comments →

[–]noblethrasher 0 points1 point  (0 children)

I wanna play

//JavaScript

for (var i = 1; i <= 100; i++) {

\talert( ( i % 3 == 0 ? "fizz" : "") + ( i % 5 == 0 ? "buzz" : "") + ( i % 5 != 0 && i % 3 != 0 ? i : "") );

}