Skip to content

Instantly share code, notes, and snippets.

@blarfoon
Last active February 21, 2022 22:54
Show Gist options
  • Save blarfoon/1ba74c3da881f75e688c67df41ef7c72 to your computer and use it in GitHub Desktop.
Save blarfoon/1ba74c3da881f75e688c67df41ef7c72 to your computer and use it in GitHub Desktop.
const myFirstObject = {
hi: "mom",
};
const mySecondObject = Object.create(myFirstObject);
console.log(mySecondObject.hi, mySecondObject.hasOwnProperty("hi")); // > mom false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment