What is the process object in a Node.js program?
The process object 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?
It is always available to Node.js applications without using require() so you can just reference it to access it (because it’s global)
What is the data type of process.argv in Node.js?
An array