diff --git a/content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md b/content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md index ea6b50b8b..513eb18fe 100644 --- a/content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md +++ b/content/roadmaps/106-javascript/content/107-javascript-control-flow/readme.md @@ -1 +1,12 @@ -# Javascript control flow \ No newline at end of file +# 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 + +Free Content +Control Flow - MDN \ No newline at end of file