Skip to content

Commit 1a4b9b4

Browse files
authored
Issues #1239 のPRです (#1254)
「インスタンス化したときに」を削除するものです。 #1239
1 parent b804895 commit 1a4b9b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/basic/prototype-object/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ console.log(typeof Object.prototype.toString); // => "function"
5050

5151
> `Object.prototype.toString` = `Object#toString`
5252
53-
`Object`のインスタンスは、この`Object.prototype`オブジェクトに定義されたメソッドやプロパティをインスタンス化したときに継承します
53+
`Object`のインスタンスは、この`Object.prototype`オブジェクトに定義されたメソッドやプロパティを継承します
5454
つまり、オブジェクトリテラルや`new Object`でインスタンス化したオブジェクトは、`Object.prototype`に定義されたものが利用できるということです。
5555

5656
次のコードでは、オブジェクトリテラルで作成(インスタンス化)したオブジェクトから、`Object#toString`メソッドを参照しています。

0 commit comments

Comments
 (0)