Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/708b0e2e3fb728d81a181cba4d61df4c to your computer and use it in GitHub Desktop.
Save szaranger/708b0e2e3fb728d81a181cba4d61df4c to your computer and use it in GitHub Desktop.
const person = {
hasOwnProperty: function() {
return false;
},
age: 21
};
if (Object.hasOwn(person, 'age')) {
console.log(person.age); // true - the remplementation of hasOwnProperty() did not affect the Object
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment