From 0b31180160461f339e7cb74183b63139ad918f10 Mon Sep 17 00:00:00 2001 From: faaris97 <63646223+faaris97@users.noreply.github.com> Date: Thu, 4 Mar 2021 13:49:03 +0000 Subject: [PATCH] Update helloWorld.js added "Hello, World!" to the return value --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..53a647d 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return("Hello, World!") } module.exports = helloWorld