The "sideEffects" property in package.json helps tree shaking by indicating if a module may contain _______.
- Side Effects
- Pure Functions
- Impure Functions
- Async Functions
The correct option is (b) Pure Functions. The "sideEffects" property, when set to false, informs the module bundler that the module does not have side effects, making it eligible for tree shaking. Pure functions are side effect-free functions that only depend on their input parameters, making them suitable for elimination during tree shaking.
Loading...
Related Quiz
- Question 1: Consider a project with both Node.js and browser targets. How would you use the ES6 module resolution to handle environment-specific code?
- Can destructuring assignment be used with arrays, and if so, how does it differ from object destructuring?
- Currying in JavaScript can help in creating functions that are ________ to specific scenarios.
- Using _________, you can condense an array into a single value, optionally starting with an initial value.
- How do Symbols contribute to better property encapsulation in objects?