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:
parent
3b51e5dbef
commit
8c4c4a0ae0
|
@ -1,5 +1,5 @@
|
|||
var helloWorld = function() {
|
||||
return ''
|
||||
return 'Hello, World!'
|
||||
}
|
||||
|
||||
module.exports = helloWorld
|
||||
module.exports = helloWorld
|
||||
|
|
Loading…
Reference in New Issue