Objectオブジェクトは、StringやNumber等の他のオブジェクトの雛形として用意されています。 JavaScriptでは他のオブジェクトは、基本的にすべてのデータはObject型を継承しています。 Objectの型 console.log(`Objectの型 typeof Object => ${typeof Object} typeof String => ${typeof String} typeof Number => ${typeof Number} typeof Function => ${typeof Function} Object === Object.prototype.constructor => ${Object === Object.prototype.constructor} String === String.prototype.constructor