From 74c1c936dd84c44572cddc1e19026f27ad2cda09 Mon Sep 17 00:00:00 2001 From: Priyanshu Jain <97952715+Priyanshu6008@users.noreply.github.com> Date: Mon, 30 Jan 2023 19:59:46 +0530 Subject: [PATCH] Update helloWorld.js --- 01_helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_helloWorld/helloWorld.js b/01_helloWorld/helloWorld.js index df27036..f19e628 100644 --- a/01_helloWorld/helloWorld.js +++ b/01_helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'hello world' }; module.exports = helloWorld;