Skip to content

Instantly share code, notes, and snippets.

@vasylpb
Created October 5, 2019 13:22
Show Gist options
  • Save vasylpb/c367b484cdf716d51148c9c5be8340b7 to your computer and use it in GitHub Desktop.
Save vasylpb/c367b484cdf716d51148c9c5be8340b7 to your computer and use it in GitHub Desktop.
function myNew(constructor, ...args) {
const obj = {}
Object.setPrototypeOf(obj, constructor.prototype);
return constructor.apply(obj, args) || obj
}
function Cat(color, name) {
this.color = color
this.name = name
}
const cat = myNew(Cat, 'black', 'Cat')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment