In a Node.js application, the 'optimist' module is installed. If the following program is executed in a JavaScript file of this application, then what will be the output?
var a1 = require('optimist').argv;
delete a1['$0'];
console.log(a1);
Correct Answer: { _: [] }
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More Node.js MCQ Questions