Created
May 30, 2018 10:48
-
-
Save khg0712/6b1f3c7400c4c43e8851f73949c1cf35 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 objectEx = { | |
prop1: 'k', | |
prop2: 1, | |
prop3: 'Hello' | |
}; | |
console.log(objectEx.hasOwnProperty('prop1'));//true 출력 | |
console.log(objectEx.hasOwnProperty('prop4'));//false 출력 | |
console.dir(objectEx); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment