Is it possible to classify a function like this as a unary function?
function unaryOrNot([foo,bar,baz,...args,]){}
When given an input such as:
[1,2,3,4,5,6,7,8,9]
Even though there is technically only one input, I still have named access to foo, bar, and baz, which are the first three properties of the array.
I appreciate your responses!