Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6853f6a

Browse files
authoredMay 5, 2020
remove duplicate words
1 parent c2ce2d4 commit 6853f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎1-js/04-object-basics/01-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ alert( *!*key*/!* in user ); // true, property "age" exists
360360
361361
Why does the `in` operator exist? Isn't it enough to compare against `undefined`?
362362
363-
Well, most of the time the comparison with `undefined` works fine. But there's But there's a special case when it fails, but `"in"` works correctly.
363+
Well, most of the time the comparison with `undefined` works fine. But there's a special case when it fails, but `"in"` works correctly.
364364
365365
It's when an object property exists, but stores `undefined`:
366366

0 commit comments

Comments
 (0)
Please sign in to comment.