How does a pure function handle dependencies or external variables?
- Manages dependencies internally
- Avoids external dependencies
- Handles dependencies through callbacks
- Utilizes global variables
In a pure function, dependencies are avoided to maintain purity. External variables could introduce side effects, violating the principle of purity.
Loading...
Related Quiz
- How do default parameters affect the arguments object in a function?
- What is a use case for choosing WeakMap over Map?
- Can a generator function yield another generator function? If so, how is it achieved?
- To execute multiple async functions in parallel and wait for all of them, use __________.
- When a function returns a new object each time it is called, even with the same inputs, is it considered a pure function?