InterviewSolution
Saved Bookmarks
| 1. |
What is the command to run the node programs?(a) node(program.js)(b) program.js(c) node program.js(d) node.program.js |
|
Answer» Correct answer is (c) node program.js For explanation I would say: The node programs can be run with the command:node program.js. The command can be written more simply like node program. |
|