In order for tree shaking to work effectively, the module bundler must support _______ analysis.
- Static
- Dynamic
- Runtime
- Bundle
The correct option is (a) Static. Effective tree shaking relies on static analysis of the code by the module bundler. It involves analyzing the code without executing it, allowing the bundler to determine which parts of the code are unreachable and can be safely eliminated during the bundling process.
Loading...
Related Quiz
- How would you use mixins in ES6 to enhance classes in a library, without modifying the original source code?
- What is a common pitfall when chaining multiple asynchronous operations using Promises?
- In which environment (Node.js or browser) were ES6 Modules not originally supported?
- The spread operator can be used in ES6 to clone an array without ________ the original array.
- A const declaration ensures that the variable's __________ cannot be reassigned.