From 524ca0b286b93881512855ae6607efee3950f87f Mon Sep 17 00:00:00 2001 From: harrywalia019 <41566603+harrywalia019@users.noreply.github.com> Date: Fri, 4 Oct 2019 23:18:58 +0530 Subject: [PATCH] Update README.md --- loops/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 +```