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

What happens when this HTTP handler runs for a request?

const http = require('http'); http.createServer((req, res) => { res.end('hello'); res.setHeader('X-Powered-By', 'me'); }).listen(3000);