DEV Community

Cover image for The Rest Parameter in Javascript
Madeline
Madeline

Posted on

The Rest Parameter in Javascript

Let's say we want to find the average of two numbers. We could write a function "calculateAverage" that takes two numbers as arguments and then returns their average.
Code example 1: calculateAverage function

In this function we pass in two numbers as arguments (numberOne, numberTwo). Then in the function body we return the sum of the two numbers and divide it by 2 to find out the average.

This works nicely, but what if we need to find the average of three numbers, or four, or five? Because we're lazy, we don't want to write a new function for each set of numbers. Instead, we want to use one function to do all of these calculations.

Here's one way to solve the problem: We can pass in an array of numbers as an argument into a new function - we'll call this one "calculateAverageArray". Then we can do our calculations in the function body, dividing the sum of all the numbers in our array by the length of the array.
Code example 2: calculateAverageArray function

In this function we use the forEach method to loop over each item in the array. That means we perform a calculation on each number that is in the array. We start out with a sum of 0, stored in the "sum" variable. Then, each time we have a new number in our array we add that number to the sum. The first time array.forEach runs we get 0+0=0. The 2nd time: 0+100=100. The third time: 100+88=188. And finally: 188+64=252. Then we divide "sum" by the length of the array (array.length), which in this case is 4). 252 / 4 = 63. That is our average.

But what if we don't want to enter our numbers into the function as an array? What if we want to enter each one in as a parameter? But we still want to be able to enter a different number of parameters, depending on if we are calculating the average of 2 numbers, 4 numbers, or even 100 numbers.

We don't have a way to do this with our current syntax.
Code example 3: error message

This is where the rest parameter comes in.

Here is what the syntax looks like:

Code Example 4: calcAvgRest function using the rest parameter

As our function parameter we use (...numbers) to tell Javascript to grab all of the arguments passed into the function and put them into an array called "numbers".

This allows us to call the function by entering our individual numbers into the function call as parameters - as many as we need - instead of entering them in as a single array. We call the function with the values "0, 100, 88, 64" instead of the array "[0, 100, 88, 64]". But once the function is called, these values get added to an array. Then we can go about our business adding them all together, and dividing their sum by the length of the array to find out the average.

This gives us the flexibility to use this function for a variety of different cases.

BONUS:
With the rest parameter, we can even add non-number values into our function call! Let's imagine we'd like to use this function to give us a different message, depending on what we are calculating the average of. Maybe we want to know the average amount of customers who visited a restaurant in the last week, or the average temperature over the last 14 days, or the average score a student is getting on her tests.

We can use a template string to print a message that is customized for each of these cases.
Code Example 5: calcAvgRest function with template string

In this function we use a template string to print a message depending on what arguments are passed into the function call. The first argument will be a string and go in the ${string} portion of the template string. The string will describe what things we are calculating the average of. The rest of the arguments come from the numbers array that is set up by the rest parameter (...numbers).

Finally, if we want to clean up the decimal places on the number that is returned from our calcAvgRest function, we can perform a little Javascript math using Math.floor. This will round off the decimal places and give us a nice clean whole number for our average.
Code example 6: Math.floor operator

Note: Make sure you wrap the entire "average" calculation in a parenthesis! At first I only put "sum" inside of the Math.floor parenthesis and it did not have the desired effect.

Top comments (0)