Carefully study the following code snippet and answer the question that follows.
var exp = require('express');
var application1 = exp() .use(function (rq, rs){
console.log('Cookie Header:\n', rq.headers['cookie']);
rs.cookie('\n name', 'Node.js');
rs.end('Hello Express World');
}).listen(3000);
Which of the following code snippets should be added at the top of those files that use the mongodb module?
Correct Answer: Cookie Header:
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More Node.js MCQ Questions