Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 3, 2018 13:45
Show Gist options
  • Save khg0712/b81bffa828866971cc8c3e6eaceef0d1 to your computer and use it in GitHub Desktop.
Save khg0712/b81bffa828866971cc8c3e6eaceef0d1 to your computer and use it in GitHub Desktop.
객체와 프로토타입 관계 예시
var cat = {
name: 'James',
age: 2
};//cat 객체 생성
console.log(cat.toString());//[object Object] 출력
console.dir(cat);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment