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(). It can also be explicitly accessed using require():

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you access the process object in a Node.js program?

A

const process = require(‘process’);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the data type of process.argv in Node.js?

A

The process.argv property returns an array containing the command line arguments passed when the Node.js process was launched. contains strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly