Created
May 19, 2018 17:06
-
-
Save khg0712/2ea5aa4ba3d0db2058a8276b04925034 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 person (name){ | |
this.name = name; | |
} | |
console.dir(person.prototype); | |
console.dir(person.prototype.constructor); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment