Skip to content

Instantly share code, notes, and snippets.

@urstory
Created December 3, 2015 06:58
Show Gist options
  • Save urstory/3bd6c197ff003ee18834 to your computer and use it in GitHub Desktop.
Save urstory/3bd6c197ff003ee18834 to your computer and use it in GitHub Desktop.
A를 상속받는 B
function A{
this.a = function(){}
}
function B{
this.base = A;
this.base(length, length);
}
B.prototype = A.prototype;
B.prototype.constructor = B;
var b = new B();
b.a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment