Node.js Flashcards
1
Q
What is a JavaScript module?
A
A JavaScript file that pertains to a certain functionality of an application.
2
Q
What values are passed into a Node.js module’s local scope?
A
Exports, require, module, __filename, and __dirname.
3
Q
Give two examples of truly global variables in a Node.js program.
A
Process object, console object