Node.js - HTTP Module
What will the following Node.js code output when accessed via a browser?
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World');
});
server.listen(4000);