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
om agarwal 2 years ago committed by GitHub
parent 7bb4d56d7d
commit bf3af826f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md

@ -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…
Cancel
Save