Update helloWorld.js

added 'Hello, World!' to the return function on line 2
This commit is contained in:
faaris97 2021-03-06 13:18:18 +00:00 committed by GitHub
parent 42076e7424
commit 9071063e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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