How does tree shaking differ between named and default exports?
- Tree shaking is more effective with default exports
- Tree shaking is more effective with named exports
- Tree shaking treats both equally
- Tree shaking cannot be used with ES6 modules
Tree shaking is more effective with default exports because the bundler can directly eliminate the unused default export, whereas with named exports, the bundler may include unnecessary exports even if only one is used.
Loading...
Related Quiz
- What method is used to specify the code to execute after a Promise is fulfilled?
- When destructuring function parameters, _________ can be used to handle undefined input.
- When implementing a function to make API requests, how would you structure it to effectively handle both network errors and incorrect responses?
- Can a child class in ES6 have a constructor without calling super()?
- To re-export all named exports from a module, use export * from _________.