kalovski

Untitled

Jul 14th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. loop: for(var i=0; i<5; i++){
  2. if(i===2)
  3. break loop;
  4. console.log(i);
  5. // 0, 1
  6. }
Add Comment
Please, Sign In to add comment