In ES6 Modules, imports and exports must be ________, unlike in CommonJS where they can be dynamic.
- Explicit
- Implicit
- Dynamic
- Conditional
In ES6 modules, imports and exports must be explicit, meaning they are statically determined at compile-time. This allows for better tooling support and optimizations. CommonJS, on the other hand, allows dynamic imports and exports.
Loading...
Related Quiz
- Can you nest template literals within each other?
- An async function always returns a __________.
- Is it possible to destructure properties from nested objects?
- In ES6, how can the spread operator (...) be used in a recursive function?
- What is the primary advantage of using dynamic imports in JavaScript?