From 0b216290dc36c419a84c47054e0bfc41dc620d23 Mon Sep 17 00:00:00 2001 From: Spmtsairam <147304268+Spmtsairam@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:45:47 +0530 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7748818..ee65da7 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000; const server = http.createServer((req, res) => { res.statusCode = 200; - const msg = 'Hello Node!\n' + const msg = 'Hello Sai Ram!\n' res.end(msg); });