From 459c937044ae11f2983c13b81aa2b9e0b69eff5d Mon Sep 17 00:00:00 2001 From: Aman gupta <49397069+Aman99344@users.noreply.github.com> Date: Sun, 27 Aug 2023 17:16:18 +0530 Subject: [PATCH] Update README.md Missing return statement in 3.7 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e7ce6a..18ad206 100644 --- a/README.md +++ b/README.md @@ -255,7 +255,7 @@ _[From video lecture 3.4]_ ```js let arrowFunction = (name = 'Coders') => { - `Welcome ${name}`; + return `Welcome ${name}`; }; console.log(arrowFunction('Programmers'));