Last active
February 21, 2022 22:54
-
-
Save blarfoon/1ba74c3da881f75e688c67df41ef7c72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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