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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *