Update helloWorld.js

added "Hello, World!" to the return value
This commit is contained in:
faaris97 2021-03-04 13:49:03 +00:00 committed by GitHub
parent 42076e7424
commit 0b31180160
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() {
return ''
return("Hello, World!")
}
module.exports = helloWorld