The ES6 Module system supports __________ import syntax, which is not possible in CommonJS.
- Dynamic
- Static
- Deferred
- Asynchronous
ES6 introduced static import syntax for modules, allowing developers to specify exactly what they want to import. This is not possible in CommonJS, where imports are dynamic and are resolved at runtime.
Loading...
Related Quiz
- If a property is not found on an object, JavaScript looks up the property on the object's prototype, known as the _________ chain.
- Consider a library with multiple utility functions; how would you structure the exports to optimize for tree shaking?
- What keyword is used to define a generator function in JavaScript?
- Is it possible to rename variables while destructuring an object or array?
- In ES6, how can the spread operator (...) be used in a recursive function?