From ca10686ac3d92958aeffca483a3d5b16da939d69 Mon Sep 17 00:00:00 2001 From: Salih <salihyildirimnorge82@gmail.com> Date: Wed, 15 Jul 2020 20:15:26 +0200 Subject: [PATCH] Solved helloWorld exercise --- helloWorld/helloWorld.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..98b9988 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,6 @@ const helloWorld = function() { - return '' + return 'Hello, World!' } module.exports = helloWorld +