mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-30 12:40:03 +02:00
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>
This commit is contained in:
@@ -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>
|
Reference in New Issue
Block a user