Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions 07_Day_Functions/07_day_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,6 @@ const numbers = [1, 2, 3, 4, 5];
//calling a function
console.log(sumArrayValues(numbers));


const areaOfCircle = (radius) => {
let area = Math.PI * radius * radius;
return area;
}
console.log(areaOfCircle(10))

```

### Function with unlimited number of parameters
Expand Down Expand Up @@ -705,4 +698,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)
[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md)