Node Process.argv Flashcards
1
Q
What is the process object in a Node.js program?
A
The process object is a global that provides information about, and control over, the current Node.js process. As a global, it is always available to Node.js applications without using require().
2
Q
How do you access the process object in a Node.js program?
A
By using the node command in the Node.js REPL to console log the process object.
3
Q
What is the data type of process.argv in Node.js?
A
An array