From 7d617d4a99393724daf99edf1f231ed6b623ae99 Mon Sep 17 00:00:00 2001 From: Aman gupta <49397069+Aman99344@users.noreply.github.com> Date: Sun, 27 Aug 2023 12:22:50 +0530 Subject: [PATCH] Update README.md In Q.3.2 there is a mistake when we declare a function we pass parameters and when we call the function we pass the argument. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e7ce6a..f2b0de6 100644 --- a/README.md +++ b/README.md @@ -179,9 +179,9 @@ _[From video lecture 2.9]_ **3.2:** Create a **function expression** which does the exact same thing as defined in **Question 1** -**3.3:** Create function **addition** which takes two numbers as an argument And return the result of **sum of two numbers** +**3.3:** Create function **addition** which takes two numbers as an parameters And return the result of **sum of two numbers** -**Important Note**: In the function call you are **not** passing any **parameter**. You can modify function to achieve this. +**Important Note**: In the function call you are **not** passing any **arguments**. You can modify function to achieve this. _[From video lecture 3.2]_