Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 30, 2018 10:48
Show Gist options
  • Save khg0712/6b1f3c7400c4c43e8851f73949c1cf35 to your computer and use it in GitHub Desktop.
Save khg0712/6b1f3c7400c4c43e8851f73949c1cf35 to your computer and use it in GitHub Desktop.
객체 리터럴로 생성된 객체의 프로토타입 체이닝
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