diff --git a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/readme.md b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/readme.md index 663cbd943..4b58e40b8 100644 --- a/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/readme.md +++ b/content/roadmaps/106-javascript/content/106-javascript-loops-iterations/readme.md @@ -1 +1,15 @@ -# Javascript loops iterations \ No newline at end of file +# 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