Node.js - HTTP Module
What response will a browser display when accessing this Node.js server?
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<h1>Welcome</h1>');
});
server.listen(3000);