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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *