Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. for (var i = 0; i <= 100; i++) {
  2. let output = '';
  3. if (i%3 === 0) output += 'fizz';
  4. if (i%5 === 0) output += 'buzz';
  5. if (output === '') output = i;
  6. console.log(output);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement