持之以恒
Results
1
comments of
持之以恒
``` js function _new(){ const Constructor = Array.prototype.shift.call(arguments) const obj = {} obj.__proto__ = Constructor.prototype const ret = Constructor.apply(obj,arguments) return typeof ret === 'object' ? ret : obj } ```