Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let i;
  2. for(i = 0; i < 5; i++) {
  3.     console.log("oui");
  4. }
  5.  
  6. let i = 0;
  7. for(; i < 5; i++) {
  8.     console.log("oui");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement