Skip to content

Instantly share code, notes, and snippets.

@MagicControl
Created May 2, 2017 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MagicControl/c00f616e5b199e1c49f7ccbffc092e3f to your computer and use it in GitHub Desktop.
Save MagicControl/c00f616e5b199e1c49f7ccbffc092e3f to your computer and use it in GitHub Desktop.
var A = function() {
this.a = 10;
}
A.prototype.hello = function() {
console.log('Hello from A!');
}
var B = function() {
}
B.prototype = new A();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment