Add content for JavaScript control flow (#2203)
* creat call-apply-bind-methods readme files * update the javascript control flow readme.md * Update content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md * Update content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/2186/head^2
parent
7bb4d56d7d
commit
bf3af826f2
1 changed files with 12 additions and 1 deletions
@ -1 +1,12 @@ |
||||
# Javascript control flow |
||||
# Control Flow |
||||
|
||||
In JavaScript, the `Control flow` is a way of how your computer runs code from top to bottom. It starts from the first line and ends at the last line unless it hits any statement that changes the control flow of the program such as loops, conditionals, etc. |
||||
|
||||
We can control the flow of the program through any of these control structures: |
||||
- Sequential (default mode) |
||||
- Conditional Statements |
||||
- Exception Handling |
||||
- Loops and Iterations |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Glossary/Control_flow'>Control Flow - MDN</BadgeLink> |
Loading…
Reference in new issue