Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 19, 2018 17:06
Show Gist options
  • Save khg0712/2ea5aa4ba3d0db2058a8276b04925034 to your computer and use it in GitHub Desktop.
Save khg0712/2ea5aa4ba3d0db2058a8276b04925034 to your computer and use it in GitHub Desktop.
함수의 프로토타입 예시
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