function Demo(name) { this.name = name;
}var getSingle = function(fn) { var result; return function() { console.log(arguments.length); return result || (result = fn.apply(this, arguments));
}
};const aa = new getSingle(Demo)('a');const bb = new getSingle(Demo)('b');console.log(aa === bb); //trueconsole.log(aa.name); // TypeError: aa is undefinedconsole.log(bb); // undefined为什么aa.name和bb未定义呢?
1 回答
慕村225694
TA贡献1880条经验 获得超4个赞
const aa = new (getSingle(Demo))('a'); 加括号可以解决undefined的问题,
但是单例不是这么写的:
result = fn.apply(this, arguments):result永远为undefined,这明显是写错了;
而且每次执行getSingle 都会var result,光这一点就可以看出来这绝对不是单例写法了
添加回答
举报
0/150
提交
取消