Tree shaking can fail to eliminate unused code if modules are dynamically _______ at runtime.
- Imported
- Exported
- Loaded
- Unloaded
The correct option is (c) Loaded. Tree shaking may fail if modules are dynamically loaded at runtime. Dynamically loading modules introduces uncertainty about which modules will be used, making it challenging for the module bundler to perform effective tree shaking.
Loading...
Related Quiz
- The Array method __________ is an example of a higher-order function that takes a function as its argument.
- In a function that accepts a variable number of arguments and needs to pass them to another function, how would the rest operator be applied?
- When the call stack is busy, new requests get queued in the __________ for their turn to be processed.
- Consider a library with multiple utility functions; how would you structure the exports to optimize for tree shaking?
- What does the super keyword do in the context of ES6 classes?