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.
This commit is contained in:
Bones81 2020-07-13 13:20:09 -04:00 committed by GitHub
parent 3b51e5dbef
commit 8c4c4a0ae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
var helloWorld = function() {
return ''
return 'Hello, World!'
}
module.exports = helloWorld
module.exports = helloWorld