Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyNodeJShttp server basicsSingle-choice MCQ

Why does this HTTP server hang and never finish the response in the browser?

const http = require('http'); http.createServer((req, res) => { res.write('Hello'); }).listen(3000);