Guest User

Untitled

a guest
Jun 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // First we define the conditions that indicate how many times our loop will run
  2. for (var i=0; i<5; i++) {
  3. //This is the work that happens in the body of our for loop
  4. console.log("This is loop number ", i);
  5. }
Add Comment
Please, Sign In to add comment