We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c83e9 commit 1fece3eCopy full SHA for 1fece3e
1-js/09-classes/06-instanceof/article.md
@@ -46,7 +46,7 @@ alert( arr instanceof Object ); // true
46
47
Please note that `arr` also belongs to the `Object` class. That's because `Array` prototypally inherits from `Object`.
48
49
-The `instanceof` operator examines the prototype chain for the check, but we can set a custom logic the static method `Symbol.hasInstance`.
+The `instanceof` operator examines the prototype chain for the check, but we can set a custom logic in the static method `Symbol.hasInstance`.
50
51
The algorithm of `obj instanceof Class` works roughly as follows:
52
0 commit comments