Javascript ES6 modules
Easy
18
1
67.8% Acceptance
ES6 modules provide a better way of managing code. This lab will help you to learn how to create and export ES6 modules using the export
keyword and how to import them using the import
keyword. You will practice exporting a function from a greetings.js
file and importing it into the index.js
file.