From 46efb4d650e7217dcdb4ca05d628989fc78f5244 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 21:01:34 +0530 Subject: [PATCH] Exercise 6.8 --- Chapter 6/Exercise 6.8 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Chapter 6/Exercise 6.8 diff --git a/Chapter 6/Exercise 6.8 b/Chapter 6/Exercise 6.8 new file mode 100644 index 0000000..00fbfa2 --- /dev/null +++ b/Chapter 6/Exercise 6.8 @@ -0,0 +1,9 @@ +const test = function(val){ + console.log(val); +} +test('hello 1'); + +function test1(val){ + console.log(val); +} +test1("hello 2");