________ tools are crucial in analyzing and removing unused code through tree shaking.
- Babel
- Linter
- Bundler
- Minifier
Bundlers play a key role in tree shaking. They are responsible for analyzing the dependencies between modules, identifying unused code, and removing it during the build process. Common bundlers like Webpack and Rollup are often configured to perform tree shaking to optimize the final bundle size.
Loading...
Related Quiz
- ES6 allows the use of ________ to dynamically create property names in object literals.
- The spread operator can be used in ES6 to clone an array without ________ the original array.
- The __________ keyword is used for creating getter methods in an ES6 class.
- What method is used to resume the execution of a generator function?
- What types of collections can the for...of loop iterate over in JavaScript?