finished helloWorld.js exercise

This commit is contained in:
Denzel 2019-12-31 12:51:52 +08:00
parent f228d73f98
commit 1d3ac67a1f
1 changed files with 2 additions and 2 deletions

View File

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