From b4ff1c6e4df29b5f89ab4157775c92acb40963b0 Mon Sep 17 00:00:00 2001 From: chl797 <100977908+chl797@users.noreply.github.com> Date: Thu, 5 May 2022 15:07:35 -0700 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..c3327c5 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;