From 9071063e230602cb076db83f20778b8f394e17f5 Mon Sep 17 00:00:00 2001 From: faaris97 <63646223+faaris97@users.noreply.github.com> Date: Sat, 6 Mar 2021 13:18:18 +0000 Subject: [PATCH] Update helloWorld.js added 'Hello, World!' to the return function on line 2 --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..7d01115 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'Hello, World!' } module.exports = helloWorld