From 19f68886880615ffb99248adbaa2ffa05f5689f7 Mon Sep 17 00:00:00 2001 From: vrarora <74527212+vrarora@users.noreply.github.com> Date: Tue, 22 Dec 2020 14:01:32 +0530 Subject: [PATCH] Update helloWorld.js I added the answer instead of empty strings as solution must be added in the solutions branch. --- helloWorld/helloWorld.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index cf8cd75..9029bef 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ var helloWorld = function() { - return '' + return 'Hello, World!' } -module.exports = helloWorld \ No newline at end of file +module.exports = helloWorld