ph4x35ccb

continue

May 12th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7. <script>
  8. for(var i=0;i<5;i++){
  9.     if(i==2){
  10.         continue;
  11.     }
  12.     console.log(i);
  13. }
  14. </script>
  15. </body>
  16. </html>
Add Comment
Please, Sign In to add comment