From 7ee8a8fb6075cd69fcbd7b84e8ba6c9274ec3fdd Mon Sep 17 00:00:00 2001 From: annima24 Date: Fri, 2 Oct 2020 11:58:55 -0400 Subject: [PATCH] Completed helloWorld exercise --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..7d01115 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'Hello, World!' } module.exports = helloWorld