From 342604b4e2bfa267a005ba22bcff502c1b2595b7 Mon Sep 17 00:00:00 2001 From: Isah Jacob Date: Sat, 29 Oct 2022 09:57:17 +0100 Subject: [PATCH] added Hello World to the function so that the function can return Hello World --- 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..b542f3b 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;