From d3268db72ea7acff2275a996e79383df043f5e3c Mon Sep 17 00:00:00 2001 From: manoranjansingh43 <107359114+manoranjansingh43@users.noreply.github.com> Date: Mon, 8 Aug 2022 13:30:55 -0500 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 54e5fef1f..a4e333b41 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 World!\n' res.end(msg); });