diff --git a/07_Day_Functions/07_day_functions.md b/07_Day_Functions/07_day_functions.md index 17d9087..b5680bc 100644 --- a/07_Day_Functions/07_day_functions.md +++ b/07_Day_Functions/07_day_functions.md @@ -114,7 +114,7 @@ printFullName() // calling a function ### Function returning value -Function can also return values, if a function does not return values the value of the function is undefined. Let us write the above functions with return. From now on, we return value to a function instead of printing it. +Function can also return values, if a function does not return values the value of the function is undefined. Let us write the above functions with return. From now on, we return value from a function instead of printing it. ```js function printFullName (){ @@ -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)