Can a module have both named and default exports?
- Yes, a module can have both named and default exports simultaneously.
- No, a module must choose either named or default exports.
- Modules can have multiple default exports, but only one named export.
- Named exports can only be used if there are no default exports in the module.
In ES6 modules, it's possible for a module to have both named and default exports. This flexibility allows developers to export a single main entity using default export and also export additional values using named exports.
Loading...
Related Quiz
- How do higher-order functions benefit from using arrow functions introduced in ES6?
- In advanced functional composition, ________ functions can be used to enhance readability.
- How does the event loop contribute to the non-blocking behavior in a Node.js server handling multiple I/O operations?
- Is it possible to destructure properties from nested objects?
- Consider a library with multiple utility functions; how would you structure the exports to optimize for tree shaking?