Guest User

Untitled

a guest
Feb 22nd, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. for (var i=1;i<=100;i++){
  2. if (i % 3 === 0){
  3. if (i % 5 === 0){
  4. console.log("FizzBuzz");
  5. }
  6. else {
  7. console.log("Fizz");
  8. }
  9. }
  10. else if (i % 5 === 0){
  11. console.log("Buzz");
  12. }
  13. else{
  14. console.log(i);
  15. }
  16. }
Add Comment
Please, Sign In to add comment