5 Commits

Author SHA1 Message Date
Pratik Lodha
158b27c715 Update example explanation in detail (#29643)
* Update example explanation in detail

* Update index.md
2019-01-30 15:13:16 -08:00
Sai Kiran
7ea103fbfc Extra bracket removed in syntax section (#27705) 2019-01-30 14:25:04 -08:00
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
S.Hale
3920b7c4ce Corrected capitalization, corrected to American spellings and typos (#30685)
* Translate challenge subtitles and example challenge text to Spanish

* Corrected errors in syntax and punctuation

* Multiple corrections of it/s to its plus other grammar corrections

* Correction and added paragraph to CSS Flex article

* Corrected my own typo

* Corrected capitalization, American spellings and typos
2018-11-07 10:34:13 -05:00
Mrugesh Mohapatra
da0df12ab7 fix(guide): simplify directory structure 2018-10-16 21:32:40 +05:30