From 5c39ba40782ea9b031215309dec9368f9d9f87eb Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Wed, 1 Jul 2020 10:53:37 +0300 Subject: [PATCH] modified return statement. --- helloWorld/helloWorld.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..a5de4ba 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