added Hello World to the function so that the function can return Hello World

This commit is contained in:
Isah Jacob 2022-10-29 09:57:17 +01:00
parent 0747078d97
commit 342604b4e2
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;