Returns a Symbol object from the global symbol registry matching the given key if found. Otherwise, returns a new symbol with this key.
Symbol.for(key)
key
The key to search for.
A Symbol object.
Symbol.for("peace") === Symbol.for("peace")
true