fork download
  1. for (h=1; h=>100; 1++){
  2. if (h % 3 === 0 && h % 5 === 0)
  3. console.log ("FizzBuzz");
  4.  
  5. else if (h % 3 === 0)
  6. console.log ("Fizz");
  7.  
  8. else if (h % 5 === 0)
  9. console.log ("Buzz");
  10.  
  11. else
  12. console.log (h);
  13. }
Runtime error #stdin #stdout 0.01s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty