Created
May 3, 2018 13:45
-
-
Save khg0712/b81bffa828866971cc8c3e6eaceef0d1 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
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