Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
puru-khedre f95471b31d
Update if/else content in JavaScript roadmap (#2162)
2 years ago
..
100-exception-handling Update 102-utilizing-error-objects.md (#2136) 2 years ago
101-conditional-statements Update if/else content in JavaScript roadmap (#2162) 2 years ago
readme.md Add content for JavaScript control flow (#2203) 2 years ago

readme.md

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