We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24cd9a6 commit a207bdbCopy full SHA for a207bdb
1 file changed
1-js/9-prototypes/7-oop-errors/article.md
@@ -274,7 +274,7 @@ var err = new PropertyRequiredError("age");
274
// пройдёт проверку
275
alert( err instanceof PropertyRequiredError ); // true
276
alert( err instanceof PropertyError ); // true
277
-alert( err isntanceof CustomError ); // true
278
-alert( err isntanceof Error ); // true
+alert( err instanceof CustomError ); // true
+alert( err instanceof Error ); // true
279
```
280
0 commit comments