Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Created March 13, 2021 16:51
Show Gist options
  • Save NovoManu/eb966892def7b439eb3035977c9b7a40 to your computer and use it in GitHub Desktop.
Save NovoManu/eb966892def7b439eb3035977c9b7a40 to your computer and use it in GitHub Desktop.
const symbol1 = Symbol()
const symbol2 = Symbol('id')
const symbol3 = Symbol('id')
// Each symbol is unique
console.log(symbol2 !== symbol3)
// Symbols could be used as object keys
const obj = {
[symbol1]: 'War',
[symbol2]: 'is',
[symbol3]: 'Peace',
}
console.log(`${obj[symbol1]} ${obj[symbol2]} ${obj[symbol3]}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment