调用工厂构造函数,可以不使用 new 关键字
var aLog = Logger('a');
var bLog = new Logger('b');
var aLog = Logger('a');
var bLog = new Logger('b');
2019-11-23
举报