Files
freeCodeCamp/guide/english/javascript
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
..
2018-12-07 03:28:58 -05:00
2018-12-16 19:33:42 -08:00
2018-11-04 15:15:04 -08:00
2018-11-25 18:03:40 -08:00
2018-11-23 21:07:04 +05:30
2018-12-19 02:20:01 -05:00
2018-11-28 22:12:53 +05:30
2018-11-06 06:03:52 +07:00
2018-12-20 16:54:45 -08:00
2018-12-08 12:51:07 -07:00