# object
// 思路:将传入的对象作为原型
function create(obj) {
function F() {}
F.prototype = obj
return new F()
}
1
2
3
4
5
6
7
2
3
4
5
6
7
← setTimeOut 事件监听 →
// 思路:将传入的对象作为原型
function create(obj) {
function F() {}
F.prototype = obj
return new F()
}
← setTimeOut 事件监听 →