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) console.log(args)
} }
sumAllNums(1, 2, 3, 4)) sumAllNums(1, 2, 3, 4)
// [1, 2, 3, 4] // [1, 2, 3, 4]
``` ```

Loading…
Cancel
Save