Guest User

Untitled

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