From 1d3ac67a1f9c0fe96502329c9351886ca5a19feb Mon Sep 17 00:00:00 2001 From: Denzel Date: Tue, 31 Dec 2019 12:51:52 +0800 Subject: [PATCH] finished helloWorld.js exercise --- helloWorld/helloWorld.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..3fc431e 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'Hello, World!' } -module.exports = helloWorld +module.exports = helloWorld \ No newline at end of file