Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/1985495e357a4a3dbcb6663cec4f77a2 to your computer and use it in GitHub Desktop.
Save szaranger/1985495e357a4a3dbcb6663cec4f77a2 to your computer and use it in GitHub Desktop.
const person = Object.create(null);
person.age = 21;
if (Object.hasOwn(person, 'age')) {
console.log(person.age); // true - works regardless of how the object was created
}
if (person.hasOwnProperty('age')){ // throws error - person.hasOwnProperty is not a function
console.log('hasOwnProperty: ', person.age);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment