From cb3cfd9c0cf5a8504291b89dc5ec30f0d0e95147 Mon Sep 17 00:00:00 2001 From: SamihaSyeed <87048819+SamihaSyeed@users.noreply.github.com> Date: Fri, 27 Aug 2021 16:55:49 +0530 Subject: [PATCH] Update helloWorld.js --- 01_helloWorld/helloWorld.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/01_helloWorld/helloWorld.js b/01_helloWorld/helloWorld.js index b542f3b..98b9988 100644 --- a/01_helloWorld/helloWorld.js +++ b/01_helloWorld/helloWorld.js @@ -1,5 +1,6 @@ const helloWorld = function() { return 'Hello, World!' -}; +} + +module.exports = helloWorld -module.exports = helloWorld;