What is the purpose of module.exports in a Node.js module?
To export a function defined in one module to another.
How do you import functionality into a Node.js module from another Node.js module?
You call the require function and pass in the module filepath as an argument.