What is a JavaScript module?
A small chunk of code meant to solve a sub problem. Modules have their own unique files.
What values are passed into a Node.js module’s local scope?
The object exports, the function require, the object module, the string __filename, and the string __dirname
Give two examples of truly global variables in a Node.js program.
Console, clearInterval(), process, global