...

/

Quiz on Function Arguments

Quiz on Function Arguments

Test your knowledge of function arguments.

We'll cover the following...
Technical Quiz
1.

Which of the following is the right way to pass the rest parameter?

A.
const max = function(...values, first, second) {
B.
const max = function(first, ...values, second) {
C.
const max = function(first, second, ...values) {

1 / 4