Guest User

Untitled

a guest
Apr 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function test(x) {
  2. var result = "";
  3. if (x % 5===0) {
  4. result = result + 'fizz';
  5. }
  6. if (x % 3===0) {
  7. result = result + 'buzz';
  8. }
  9. return result || x;
  10. }
Add Comment
Please, Sign In to add comment