freeCodeCamp/guide/english/javascript/loops/for-loop
Olayemi Adebayo Roheem 14b29da497 Add the text "In addition to the break statement which opts out of th… (#26063)
* Add the text "In addition to the break statement which opts out of the iteration when the condition is false is the continue statement. The `continue` statement skips the condition when the code is true, continues up until the condition is false.  Using the above example again, let's see the functionality of the `continue` statement   ```javascript for (var elephant = 1; elephant < 10; elephant+=2) {     if (elephant === 7) {         continue;     }     console.info('elephant is ' + elephant); }  output: elephant is 1 elephant is 3 elephant is 5 elephant is 9 ```" to article

* Improved sentence structure
2018-12-21 03:31:23 -05:00
..
index.md Add the text "In addition to the break statement which opts out of th… (#26063) 2018-12-21 03:31:23 -05:00