July 5, 2024
Understanding Javascript modules. Default vs Named exports
In ES6 (ECMAScript 6) JavaScript modules, you can export values from a module and import them into another module. This is great because it allows you to organize, modularize and reuse code in a very efficient way.