Skip to content

Commit 9e3292f

Browse files
committed
Update loops.md
Fix the errant '+' artifacts introduced in commit e71a4d7.
1 parent 97dde7a commit 9e3292f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

page/javascript-101/loops.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ for (var i = 0, limit = 100; i < limit; i++) {
4848

4949
## The `for...in` loop
5050

51-
+A `for...in` loop iterates over the properties of an object. For each property, statements can be executed.
52-
+
53-
+```
54-
+for ( prop in obj ) {
51+
A `for...in` loop iterates over the properties of an object. For each property, statements can be executed.
52+
53+
```
54+
for ( prop in obj ) {
5555
// statements here will be executed for every key in the object
5656
console.log( prop + ': ' + obj[ prop ] );
5757
}
58-
``
58+
```
5959

6060

6161
## The `while` loop

0 commit comments

Comments
 (0)