Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7.  
  8.     <script type="text/javascript">
  9.        
  10.  
  11.         for (i=1; i <= 100 ; i++) {
  12.  
  13.             if ((i % 3 == 0) && (i % 5 == 0))
  14.             {
  15.                 console.log("FozzBzazz </br>");
  16.             }
  17.  
  18.             else if(i % 3 == 0)
  19.             {
  20.                 console.log("Fozz </br>");
  21.             }
  22.  
  23.             else if (i % 5 == 0)
  24.             {
  25.                 console.log("Bzazz </br>");
  26.             }
  27.  
  28.             else
  29.             {
  30.                 console.log(i);
  31.             }
  32.         }
  33.  
  34.     </script>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement