Skip to content

Commit 88da8ba

Browse files
Update concepts/type-checking/about.md
Co-authored-by: Derk-Jan Karrenbeld <[email protected]>
1 parent 7780f5c commit 88da8ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

concepts/type-checking/about.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ Array.isArray({ __proto__: Array.prototype })
9191
## The `in` operator
9292
9393
The `in` operator returns whether the first operand is a property of the second operand.
94-
It does not check that the property is defined, a property set to `undefined` will still be detected by `in`.
94+
It does not check that the property has a defined value.
95+
A property set to `undefined` will still be detected by `in`.
9596
9697
```javascript
9798
class Coffee {

0 commit comments

Comments
 (0)