Web / ES6 Interview questions
Difference between Named Exports and Default exports in ES6.
Named Exports can export multiple values and must use the exported name when importing.
Default Exports export a single value and can use any name when importing.
More Related questions...