function myNew(fn, ...args) {
// 内存中创建一个对象
let obj = {};
// 这个新对象内部的[[prototype]]指针被赋值为构造函数的prototype属性
if (fn.p
2020-11-13