From 8c4c4a0ae0ba94b48e5c9186ef9f299a5ce62e2e Mon Sep 17 00:00:00 2001 From: Bones81 Date: Mon, 13 Jul 2020 13:20:09 -0400 Subject: [PATCH] Update helloWorld.js I am still very much a newbie to programming and editing open-source and such, but when I compared my exercise solutions to the solutions stored on the repo, I was very confused that this first "Hello, World!" exercise did not seem to have the correct solution in the solutions branch of the repo. In fact, I am still doubting myself, thinking I must be missing something obvious, being such a newbie. But, the code should return "Hello, World!" and not "", right?? Massive apologies if I've missed something obvious, and if so, I am very much trying to learn all I can about web development and would love the feedback. Thanks. --- 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