Eloquent Javascript読書ノート2
453 ワード
function clone(object) {
function OneShotConstructor(){}
OneShotConstructor.prototype = object;
return new OneShotConstructor();
}
は、新たにオブジェクトを定義し、そのオブジェクトをクローンオブジェクトに設定します.