Skip to content

Commit f54ac1c

Browse files
xfqarthurvr
authored andcommitted
javascript-101/loops: remove extraneous characters
Closes jquerygh-620
1 parent 97dde7a commit f54ac1c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

page/javascript-101/loops.md

Lines changed: 5 additions & 5 deletions
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)