Home > コンストラクタ関数


コンストラクタ関数を返す方法

Factory関数を使用する方法: Factory関数は、コンストラクタ関数を返す関数です。以下は例です。function createConstructor() { function Constructor(name) { this.name = name; } return Constructor; } const MyConstructor = createConstructor(); const myObject = new MyConstructor("John"); console.log(myObject.name); // 結果: "John">>More