Passing Arrays as Function Arguments

Passing Arrays as Function ArgumentsSamantha MingBlockedUnblockFollowFollowingFeb 17If you want to pass an array into a variadic function.

You can use ES6 spread to turn that array into a list of arguments.

Yay, so much cleaner and no useless null from the old apply way ????function sandwich(a, b, c) { console.

log(a) // '????' console.

log(b) // '????' console.

log(c) // '????'}const food = ['????', '????', '????'];// Old waysandwich.

apply(null, food);// ✅ ES6 waysandwich(.

food);Using it with Math functionsThe ability to turn an array into a list of arguments is super handy with the Math functions.

Example: Find the Largest NumberLet’s say you want to find the largest number using the Math.

max() function.

const largest = Math.

max(5, 7, 3, 4);console.

log(largest); // 7But rarely, would you pass in individual values.

More likely, you would want to find the maximum element in an array.

So the question now is, how do you pass an array of values into a function that accepts individual arguments and NOT an array?This would be terrible:const numbers = [5, 7, 3];// ????.Yuck!Math.

max(numbers[0], numbers[1], numbers[2]);// ❌ And this won't workMath.

max(numbers); // NaNLucky for us, we can use ES6’s Spread operator!const numbers = [5, 7, 3];// ????.Much Better!Math.

max(.

numbers); // 7What spread is doing here is taking the array element and expanding or unpacking it into a list of arguments for our variadic function.

const numbers = [5, 7, 3];console.

log(.

numbers); // 5 7 3Explaining spread in non-dev termsIf you find this spread-ing thing still confusing.

Maybe let me try to explain it with Russian nesting dolls.

So I like to think of the array as Russian nesting dolls.

And what spread does is:It unpacks (spread) the nested dolls into individual dolls.

And now you have all these individual dolls (arguments) to place nicely in your display case (function).

Not sure if this explanation helps?.Leave a comment if it does, and I’ll start explaining programming concepts in fun ways like this ????Passing Multiple Arrays as Function ArgumentsAnother superpower spread has is combining arrays.

const one = [1,2,3];const two = [4,5,6];const merged = [.

one, .

two];// [ 1, 2, 3, 4, 5, 6 ]So we can use this superpower to pass multiple arrays as function arguments ????const one = [1,2,3];const two = [4,5,6];Math.

max(.

one, .

two); // 6For those keeners, wondering if you can pass in 3 arrays.

Well, you betcha!.It’s like the energizer bunny, it keeps going and going and going ….

(This post is not sponsored by Energizer lol.

But that can change, hit me up Energizer.

Me want some sponsor money ????)const one = [1,2,3];const two = [4,5,6];const three = [2,100,2];Math.

max(.

one, .

two, .

three); // 100What is a variadic function?So you may notice I use the term variadic functions.

The computer science folks will have probably heard this term.

But for the rest of the cool bees like myself ????, it may not be so familiar.

A variadic function is a function that accepts an infinite or variable number of arguments.

And the Math.

max() function is one of those variadic function.

ResourcesMDN Web Docs — Spread syntaxDWB — 6 Great Uses of the Spread OperatorSpreading arrays into arguments in JavaScriptJavaScript.

info — SpreadStack Overflow — Passing an array as a function parameter in JavaScriptSmashing Magazine — How To Use ES6 Arguments And ParametersShareLike this on TwitterLike this on InstagramOriginally published at www.

samanthaming.

com.

Thanks for reading ❤Say Hello!.Instagram | Facebook | Twitter | SamanthaMing.

com | Blog.. More details

Leave a Reply