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');
Loading...
Related Quiz
- How does immutability relate to pure functions in JavaScript?
- What is the significance of the "exports" field in package.json for an ES6 module?
- In ES6, what is the role of the 'package.json' file in module resolution?
- What is the primary purpose of tree shaking in JavaScript modules?
- Can dynamic imports be conditional? If so, what is a real-world use case?