From e2046dddd65f3cb9b8e02ac8c2dcc5f9641b96c8 Mon Sep 17 00:00:00 2001 From: anujsahu Date: Mon, 16 Mar 2026 20:24:59 +0530 Subject: [PATCH] 2nd --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index c01ffd0..1c0379d 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('3rd updateee Hello World'); + res.end('2nd updateee Hello World'); } else { res.writeHead(404, { 'Content-Type': 'text/plain' }); res.end('Not Found');