Skip to content

Instantly share code, notes, and snippets.

@behnamazimi
Created December 27, 2019 11:23
Show Gist options
  • Save behnamazimi/fe2cc3565b7fe3300adab7a57aebac60 to your computer and use it in GitHub Desktop.
Save behnamazimi/fe2cc3565b7fe3300adab7a57aebac60 to your computer and use it in GitHub Desktop.
const myObject = {
[Symbol("myKey")]: "My Data",
//...
}
console.log(Object.getOwnPropertySymbols(myObject)); //o: [Symbol(myKey)]
const symbl = Object.getOwnPropertySymbols(myObject)[0]
console.log(myObject[symbl]) //o: "My Data"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment