freeCodeCamp/guide
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
..
arabic typo guide c more-math rightshift (#31663) 2018-12-17 10:48:36 -07:00
chinese Added links (#33708) 2018-12-20 15:50:12 -08:00
english Add the text "In addition to the break statement which opts out of th… (#26063) 2018-12-21 03:31:23 -05:00
portuguese typo guide c more-math rightshift (#31663) 2018-12-17 10:48:36 -07:00
russian changes (#25560) 2018-12-17 22:47:18 +04:00
spanish typo guide c more-math rightshift (#31663) 2018-12-17 10:48:36 -07:00