_________ in ES6 Modules enables static analysis and optimization, a feature not present in CommonJS.
- Explicit Dependency Declaration
- Dynamic Dependency Resolution
- Tree Shaking
- Lazy Loading
Tree Shaking in ES6 Modules allows for the removal of unused code during the build process, leading to smaller bundle sizes. This feature is not available in CommonJS, highlighting the advantages of ES6 modules.
Loading...
Related Quiz
- In a node.js application, how would you handle errors when performing multiple asynchronous operations in parallel?
- How can default parameters be used to create polymorphic functions in JavaScript?
- Can destructuring assignment be used with arrays, and if so, how does it differ from object destructuring?
- In a recursive function, how can default parameters be used to track state across recursive calls?
- In an AJAX call using Promises, _________ is a method used to parse the JSON response.