When a function returns a new object each time it is called, even with the same inputs, is it considered a pure function?
- Yes
- No
- Depends on the type of object
- Only if the object is immutable
A pure function should consistently return the same result for the same inputs, and creating new objects introduces unpredictability, making it impure.
Loading...
Related Quiz
- How do you import a default export from a module?
- How can you create a custom iterable object using ES6 classes?
- When building a new object that combines properties from several sources, how can the spread operator be used effectively?
- What happens if you try to use a for...of loop on an object that does not implement the iterable protocol?
- How does the super keyword differ when used in static methods compared to non-static methods?