From 7a3a81d3f6ae197109707ae16fa65546d932249a Mon Sep 17 00:00:00 2001 From: Vutulosa <59256117+Vutulosa@users.noreply.github.com> Date: Wed, 3 May 2023 16:40:17 +0100 Subject: [PATCH] Fix few typos --- 07_Day_Functions/07_day_functions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/07_Day_Functions/07_day_functions.md b/07_Day_Functions/07_day_functions.md index 17d9087..3485b64 100644 --- a/07_Day_Functions/07_day_functions.md +++ b/07_Day_Functions/07_day_functions.md @@ -147,7 +147,7 @@ In a function we can pass different data types(number, string, boolean, object, ```js // function with one parameter function functionName(parm1) { - //code goes her + //code goes here } functionName(parm1) // during calling or invoking one argument needed @@ -170,7 +170,7 @@ console.log(square(10)) ```js // function with two parameters function functionName(parm1, parm2) { - //code goes her + //code goes here } functionName(parm1, parm2) // during calling or invoking two arguments needed // Function without parameter doesn't take input, so lets make a function with parameters @@ -705,4 +705,4 @@ It Will be covered in other section. 🎉 CONGRATULATIONS ! 🎉 -[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md) \ No newline at end of file +[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md)