Node.js - HTTP Module
What will be the output headers if the following code runs in a Node.js HTTP server?
res.setHeader('X-Custom', '123');
res.setHeader('Content-Type', 'text/plain');
res.end('Hello');