What kind of exports are more conducive to effective tree shaking?
- Default exports
- Named exports
- All exports are treated equally by tree shaking.
- Both default and named exports
Tree shaking is more effective with named exports, as it can selectively include or exclude specific exports based on usage. Default exports can still be tree shaken, but named exports provide more granularity.
Loading...
Related Quiz
- In what way does the Spread Operator interact with iterables?
- In a scenario where an application needs to make several API calls and only proceed after all have successfully completed, what Promise method would be most appropriate?
- Imagine you are creating a gaming application with different types of characters. How would you use inheritance in ES6 classes to implement shared behaviors?
- What is the main advantage of using Promises over Callbacks in asynchronous JavaScript?
- A class expression in ES6 can be named or unnamed, with the name being accessible inside the class's ________.