Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Practice Importing and Exporting Modules in Node.js!
You have completed Practice Importing and Exporting Modules in Node.js!
Instruction
Importing and Exporting Modules in Node.js
This reference step covers the various ways to import and export modules in Node.js.
Export a Module
Set module.exports to an object containing multiple functions:
module.exports = {
reverseString: (string) => {...},
shortenString: (string) => {...}
};
Create multiple named functions and export them together in the fileβs module.exports object:
const reverseString = (string)...