From 7928d2392624808fb7ae360fa77f34a11dba6d57 Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 4 Oct 2023 12:53:29 +0530 Subject: [PATCH] Updated name --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cbdbf26c..6a6f4df7 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ var http = require('http'); var server = http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); - response.end("Hello World!"); + response.end("Hello Priyanka!"); });