Skip to content

Commit

Permalink
Object ページの誤字修正
Browse files Browse the repository at this point in the history
誤: 書けている
正: 欠けている
  • Loading branch information
mikoto2000 authored Jan 10, 2025
1 parent 176eb15 commit db25021
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ nullProtoObj.constructor; // "undefined" と表示
`toString` メソッドを null プロトタイプオブジェクトに割り当てることで追加することができます。

```js
nullProtoObj.toString = Object.prototype.toString; // 新しいオブジェクトに toString が書けているため、元の汎用的なものを追加しなおす
nullProtoObj.toString = Object.prototype.toString; // 新しいオブジェクトに toString が欠けているため、元の汎用的なものを追加しなおす

console.log(nullProtoObj.toString()); // "[object Object]" と表示
console.log(`nullProtoObj is: ${nullProtoObj}`); // "nullProtoObj is: [object Object]" と表示
Expand Down

0 comments on commit db25021

Please sign in to comment.