This commit is contained in:
Ilya Kantor 2016-11-14 16:31:21 +03:00
parent 3defacc09d
commit f99574f53b
178 changed files with 530 additions and 271 deletions

View file

@ -0,0 +1,22 @@
importance: 5
---
# Странное поведение instanceof
Почему `instanceof` в коде ниже возвращает `true`, ведь объект `a` явно создан не `B()`?
```js run
function A() {}
function B() {}
A.prototype = B.prototype = {};
var a = new A();
*!*
alert( a instanceof B ); // true
*/!*
```