Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

(兑吧)情人节福利题,如何实现一个 new

function _new(fn, ...args) {
  let obj = Object.create(fn.prototype);
  let ret = fn.apply(obj, args);
  return ret instanceof Object ? ret : obj;
}