Skip to content

Instantly share code, notes, and snippets.

@blarfoon
Last active February 21, 2022 22:46
Show Gist options
  • Save blarfoon/e762ddd4e05550ad1e9e01dec66cab22 to your computer and use it in GitHub Desktop.
Save blarfoon/e762ddd4e05550ad1e9e01dec66cab22 to your computer and use it in GitHub Desktop.
const myObject = {
hi: "mom",
};
console.log(myObject.hasOwnProperty("hi")); // > true
delete myObject.hi;
console.log(myObject.hasOwnProperty("hi")); // > false
// PAY ATTENTION NOW
Object.defineProperty(myObject, "hi", {
value: "mom",
configurable: false,
});
console.log(myObject.hasOwnProperty("hi")); // > true
delete myObject.hi;
console.log(myObject.hasOwnProperty("hi")); // > true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment