What is a JavaScript module?
is a single .js file
What are the advantages of modular programming?
keep the code clean, makes it easier to read and tell what the problem is when it arises
In JavaScript, how do you make a function in a module available to other modules?
export the function
In JavaScript, how do you use a function from another module?
import the exported function