From 7988a41b56e98c7b521a3274c6cf6d74c2ebd0ed Mon Sep 17 00:00:00 2001 From: GideonBature Date: Mon, 26 Sep 2022 06:41:10 +0100 Subject: [PATCH] complete 01_helloWorld exercise --- 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..1a32052 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;