From 6a26d8335a37cade856542f0e064d4522f686103 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 20:49:37 +0530 Subject: [PATCH] Exercise 6.1 --- Chapter 6/Exercise 6.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter 6/Exercise 6.1 b/Chapter 6/Exercise 6.1 index 7fdc102..3b91896 100644 --- a/Chapter 6/Exercise 6.1 +++ b/Chapter 6/Exercise 6.1 @@ -1,7 +1,7 @@ function adder(a, b) { return a + b; } -const val1 = 10; +const val1 = 10; const val2 = 20; console.log(adder(val1, val2)); console.log(adder(20, 30));