The method Symbol.for(__________) is used to create Symbols that are __________ across different scopes.

  • globalKey'
  • sharedKey'
  • scopedKey'
  • localKey'
Symbol.for() is used to create symbols that are shared across different scopes. It searches for an existing symbol with the given key and returns it if found; otherwise, it creates a new one. Example: const sharedSymbol = Symbol.for('sharedKey');
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *