Pure functions should not modify any _________ state.
- Local
- External
- Internal
- Global
Pure functions should not have side effects, and modifying global state is considered a side effect. Therefore, they should not modify any global state.
Loading...
Related Quiz
- What is the significance of weak references in WeakMap and WeakSet with regards to memory management?
- In a derived class, if you omit the constructor, JavaScript automatically calls super with _______.
- In ES6, ________ methods are methods that are shared among all instances of a class.
- In a WeakMap, keys must be ________ and not primitive values.
- Tree shaking is most effective when modules use _______ exports rather than wildcard exports.