We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b804895 commit 1a4b9b4Copy full SHA for 1a4b9b4
source/basic/prototype-object/README.md
@@ -50,7 +50,7 @@ console.log(typeof Object.prototype.toString); // => "function"
50
51
> `Object.prototype.toString` = `Object#toString`
52
53
-`Object`のインスタンスは、この`Object.prototype`オブジェクトに定義されたメソッドやプロパティをインスタンス化したときに継承します。
+`Object`のインスタンスは、この`Object.prototype`オブジェクトに定義されたメソッドやプロパティを継承します。
54
つまり、オブジェクトリテラルや`new Object`でインスタンス化したオブジェクトは、`Object.prototype`に定義されたものが利用できるということです。
55
56
次のコードでは、オブジェクトリテラルで作成(インスタンス化)したオブジェクトから、`Object#toString`メソッドを参照しています。
0 commit comments