Skip to content

Instantly share code, notes, and snippets.

@kitelife
Created April 30, 2015 06:48
Show Gist options
  • Select an option

  • Save kitelife/007bab032858b4e35ce9 to your computer and use it in GitHub Desktop.

Select an option

Save kitelife/007bab032858b4e35ce9 to your computer and use it in GitHub Desktop.
JavaScript继承方案实现
function extend(Child, Parent) {
var F = function(){};
F.prototype = Parent.prototype;
Child.prototype = F();
Child.prototype.constructor = Child;
Child.uber = Parent.prototype;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment