From 9dadabc9bff0b20b435edb59316dabc577d3d3fd Mon Sep 17 00:00:00 2001 From: Max Hillebrand Date: Fri, 17 Nov 2023 08:11:44 +0100 Subject: [PATCH] Solved 01_helloWorld --- 01_helloWorld/helloWorld.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_helloWorld/helloWorld.js b/01_helloWorld/helloWorld.js index df27036..46569e0 100644 --- a/01_helloWorld/helloWorld.js +++ b/01_helloWorld/helloWorld.js @@ -1,5 +1,5 @@ -const helloWorld = function() { - return '' +const helloWorld = function () { + return "Hello, World!"; }; module.exports = helloWorld;