实现 new在使用 new 操作符过程中发生的事情
创建一个新对象
将新对象的原型连接到构造函数的原型上
将 this 绑定到这个新对象
返回新对象
实现代码function create(Con, ...args) {
// 创造一
2020-04-09