Skip to content

Instantly share code, notes, and snippets.

@maousan
Last active March 15, 2016 05:49
Show Gist options
  • Select an option

  • Save maousan/79397fba71c9839d1b66 to your computer and use it in GitHub Desktop.

Select an option

Save maousan/79397fba71c9839d1b66 to your computer and use it in GitHub Desktop.
beget
var obj = {
name: "maou"
};
Object.beget = function(o) {
var F = function() {};
F.prototype = o;
return new F();
}
var o = Object.beget(obj);
console.log(o.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment