Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/8c52b928c1b6fcbaa438778bb0dba01a to your computer and use it in GitHub Desktop.
Save manekinekko/8c52b928c1b6fcbaa438778bb0dba01a to your computer and use it in GitHub Desktop.
function Klass(parent, child) {
if (!child) {
return parent;
}
//1)
  child.prototype = new parent();
//2)
  child.prototype.constructor = child;
//3)
  return child;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment