diff --git a/app.js b/app.js index 8511802..9f4514d 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ const PORT = 8080; const server = http.createServer((req, res) => { if (req.method === 'GET' && req.url === '/') { res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end('3nd updateee Hello World'); + res.end('4nd updateee Hello World'); } else { res.writeHead(404, { 'Content-Type': 'text/plain' }); res.end('Not Found');