Created
December 1, 2018 22:18
-
-
Save manekinekko/8c52b928c1b6fcbaa438778bb0dba01a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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