Node.js - HTTP Module
Consider this code snippet:
What will be the final
res.setHeader('Content-Type', 'application/json');
res.setHeader('Content-Type', 'text/html');
res.end();What will be the final
Content-Type header sent to the client?