Created
June 22, 2022 03:39
-
-
Save lcy101u/6882e4fd02253fa40c66a9ce73173129 to your computer and use it in GitHub Desktop.
Object Create
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
// Object.create | |
const obj = Object.create(null, { | |
foo: { value: 'bar' }, | |
bar: { value: 42 }, | |
baz: { value: true} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment