Fixing a typo in 07_day_functions.md

In Unlimited number of parameters in arrow function, there is an unexpected token ')'. It's been removed.
pull/293/head
Joseph Bak 4 years ago committed by GitHub
parent a10e07845c
commit b39097e5a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -273,7 +273,7 @@ const sumAllNums = (...args) => {
console.log(args)
}
sumAllNums(1, 2, 3, 4))
sumAllNums(1, 2, 3, 4)
// [1, 2, 3, 4]
```
@ -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)
[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md)

Loading…
Cancel
Save