Skip to content

Instantly share code, notes, and snippets.

@lcy101u
Created June 22, 2022 03:39
Show Gist options
  • Save lcy101u/6882e4fd02253fa40c66a9ce73173129 to your computer and use it in GitHub Desktop.
Save lcy101u/6882e4fd02253fa40c66a9ce73173129 to your computer and use it in GitHub Desktop.
Object Create
// 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