computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
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.
Chloe Wray
3272ccb58e
|
2 years ago | |
---|---|---|
.. | ||
102-break-continue | 2 years ago | |
100-for-in-statement.md | 2 years ago | |
101-for-of-statement.md | 2 years ago | |
103-for-statement.md | 2 years ago | |
104-do-while-statement.md | 2 years ago | |
105-while-statement.md | 2 years ago | |
readme.md | 2 years ago |
readme.md
Loops and Iterations
Loops offer a quick and easy way to do something repeatedly.
You can think of a loop as a computerized version of the game where you tell someone to take X steps in one direction, then Y steps in another. For example, the idea "Go five steps to the east" could be expressed this way as a loop:
for (let step = 0; step < 5; step++) {
// Runs 5 times, with values of step 0 through 4.
console.log('Walking east one step');
}
Free Content Loops and iteration