以下の内容はhttps://var.blog.jp/archives/35909147.htmlより取得しました。
COMMENT
コメント一覧 (1)
1. ちょっと通りますよ
2017/06/25 06:18
fn.prototype = Object.create(otherFn.prototype, {
constructor: {
writable: true,
configurable: true,
value: fn
}
});
などという手も…