whip

Untitled

Mar 30th, 2019
1,374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // ------- Please begin your work below this line: -------
  2. function exerciseOne(){
  3. // In this exercise, write a simple 'for loop' that starts the variable 'i' at 0 and
  4. // increases i until it reaches 6.
  5. // Fill in the blanks in the parentheses, and then console.log(i) inside of the fo loop
  6. for( let i=0; i<7; ) {
  7. console.log (i)
  8. }
Advertisement
Add Comment
Please, Sign In to add comment