Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion loops/README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -18,4 +19,4 @@ You can write:
for (var i=0; i < cars.length; i++) {
doThing(cars[i]);
}
```
```