Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. <script id="jsbin-javascript">
  3. var x;
  4. var result;
  5.  
  6. if (x%3 === 0 && x%5 === 0){
  7. result = "fizzbuzz";
  8. } else if (x%3 === 0) {
  9. result ="fizz";
  10. } else if (x%5 === 0) {
  11. result = "buzz";
  12. } else {
  13. result = x;
  14. }
  15. </script>
  16.  
  17.  
  18. <script id="jsbin-source-javascript" type="text/javascript">var x;
  19. var result;
  20.  
  21. if (x%3 === 0 && x%5 === 0){
  22. result = "fizzbuzz";
  23. } else if (x%3 === 0) {
  24. result ="fizz";
  25. } else if (x%5 === 0) {
  26. result = "buzz";
  27. } else {
  28. result = x;
  29. }</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement