szybkiekonta

przyklad continue

Jan 22nd, 2018
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <html>
  2. <head>
  3. <body>
  4. <script type="text/javascript">
  5. <!--
  6. for (var i = 0; i <30; i++)
  7. {
  8. if ((i%3) !=0)
  9. continue;
  10. document.write(i + "; ");
  11. }
  12. // -->
  13. </script>
  14. </body>
  15. </head>
  16. </html>
Add Comment
Please, Sign In to add comment