diff --git a/loops/README.md b/loops/README.md index d41b905f..5994e78f 100644 --- a/loops/README.md +++ b/loops/README.md @@ -1,6 +1,7 @@ # Loops Loops are repetitive conditions where one variable in the loop changes. Loops are handy, if you want to run the same code over and over again, each time with a different value. +Loops can be of many types like for loop,while loop,do while, for each loop. Instead of writing: @@ -18,4 +19,4 @@ You can write: for (var i=0; i < cars.length; i++) { doThing(cars[i]); } -``` \ No newline at end of file +```