References

Symbol.keyFor()

Leírás

Visszatér az adott paraméter kulcsot adja vissza.

Szintaxis

Symbol.keyFor(sym)

Példa

// Global symbol
const globalSym = Symbol.for('foo')
 
console.log(Symbol.keyFor(globalSym))
// Expected output: "foo"
 
// Local symbol
const localSym = Symbol()
 
console.log(Symbol.keyFor(localSym))
// Expected output: undefined
in this article
back to top