Skip to content

Commit 25fddb8

Browse files
committed
Conflict fixed on "Class checking: 'instanceof'" page in french
language
1 parent a2d5a02 commit 25fddb8

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

1-js/09-classes/06-instanceof/article.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,11 @@ let rabbit = new Rabbit();
9393
alert(rabbit instanceof Animal); // true
9494
*/!*
9595

96-
<<<<<<< HEAD
97-
// rabbit.__proto__ === Rabbit.prototype
96+
// rabbit.__proto__ === Animal.prototype (no match)
9897
*!*
9998
// rabbit.__proto__.__proto__ === Animal.prototype (match!)
10099
*/!*
101100
```
102-
=======
103-
// rabbit.__proto__ === Animal.prototype (no match)
104-
*!*
105-
// rabbit.__proto__.__proto__ === Animal.prototype (match!)
106-
*/!*
107-
```
108-
>>>>>>> 4541b7af7584014a676da731f6e8774da5e059f6
109101
110102
Voici l'illustration de ce que `rabbit instanceof Animal` compare avec `Animal.prototype`:
111103

0 commit comments

Comments
 (0)