What is the process object in a Node.js program?
The process object in a Node.js program is a global that provides information about, and control over, the current Node.js process.
How do you access the process object in a Node.js program?
From the directory, type ‘node process’.
What is the data type of process.argv in Node.js?
An array. More specifically, process.argv returns an array containing the ‘process.execPath’ element, the path to the JavaScript file being executed, and the command line arguments passed when the Node.js process was launched.