Skip to content

Commit 56adb55

Browse files
authored
Merge pull request #1435 from timur-svoboda/patch-2
Исправил опечатку
2 parents 3f18b60 + 4e7727a commit 56adb55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/08-prototypes/03-native-prototypes/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ alert( obj ); // "[object Object]" ?
3333
let obj = {};
3434

3535
alert(obj.__proto__ === Object.prototype); // true
36-
// obj.toString === obj.__proto__.toString == Object.prototype.toString
36+
// obj.toString === obj.__proto__.toString === Object.prototype.toString
3737
```
3838

3939
Обратите внимание, что по цепочке прототипов выше `Object.prototype` больше нет свойства `[[Prototype]]`:

0 commit comments

Comments
 (0)