π INDEX
LOADING ENGINE...
JS Modules
Organize your code with Import and Export.
main.js1/3
π¦
Tutor: ES Modules allow you to split your code into multiple files. Use 'export' to make code available elsewhere.
Module Skills
- β Named Exports
- β Default Exports
- π Dynamic Imports
Ask A.D.A. (AI Tutor)
Hello! I am A.D.A. What do you want to learn about JS Modules?
Glossary
export
Keyword used to expose functions, objects, or primitives from a module.
import
Keyword used to read exposed code from another module file.