* fix: rm assert msg basic-javascript * fix: removed more assert msg args * fix: fixed verbiage Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
2.6 KiB
2.6 KiB
id, title, challengeType, videoUrl
id | title | challengeType | videoUrl |
---|---|---|---|
cf1111c1c11feddfaeb5bdef | Iterate with JavaScript For Loops | 1 | https://scrimba.com/c/c9yNVCe |
Description
for loop
because it runs "for" a specific number of times.
For loops are declared with three optional expressions separated by semicolons:
for ([initialization]; [condition]; [final-expression])
The initialization
statement is executed one time only before the loop starts. It is typically used to define and setup your loop variable.
The condition
statement is evaluated at the beginning of every loop iteration and will continue as long as it evaluates to true
. When condition
is false
at the start of the iteration, the loop will stop executing. This means if condition
starts as false
, your loop will never execute.
The final-expression
is executed at the end of each loop iteration, prior to the next condition
check and is usually used to increment or decrement your loop counter.
In the following example we initialize with i = 0
and iterate while our condition i < 5
is true. We'll increment i
by 1
in each loop iteration with i++
as our final-expression
.
var ourArray = [];
for (var i = 0; i < 5; i++) {
ourArray.push(i);
}
ourArray
will now contain [0,1,2,3,4]
.
Instructions
for
loop to work to push the values 1 through 5 onto myArray
.
Tests
tests:
- text: You should be using a <code>for</code> loop for this.
testString: assert(code.match(/for\s*\(/g).length > 1);
- text: <code>myArray</code> should equal <code>[1,2,3,4,5]</code>.
testString: assert.deepEqual(myArray, [1,2,3,4,5]);
Challenge Seed
// Example
var ourArray = [];
for (var i = 0; i < 5; i++) {
ourArray.push(i);
}
// Setup
var myArray = [];
// Only change code below this line.
After Test
if (typeof myArray !== "undefined"){(function(){return myArray;})();}
Solution
var ourArray = [];
for (var i = 0; i < 5; i++) {
ourArray.push(i);
}
var myArray = [];
for (var i = 1; i < 6; i++) {
myArray.push(i);
}