Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, May 11, 2017

FreeCodeCamp Iterate With Javascript While Loops Sample Solution


// Setup
var myArray = [];

// Only change code below this line.
var i = 0;
while(i < 5) {
  myArray.push(i);
  i++;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts