Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d72614c

Browse files
committed
Merge branch 'master' of github.com:shichuan/javascript-patterns
2 parents 8415951 + 04679d3 commit d72614c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

general-patterns/for-in-loops.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
var i,
5656
hasOwn = Object.prototype.hasOwnProperty;
5757
for (i in man) {
58-
if (hasOwn.call(man, i)) P // filter
58+
if (hasOwn.call(man, i)) { // filter
5959
console.log(i, ":", man[i]);
6060
}
6161
}

0 commit comments

Comments
 (0)