Intermediate
R
Q52 / 100
What does the "...": (ellipsis/dots) argument allow in a function definition like "function(x, ...)"?
Correct! Well done.
Incorrect.
The correct answer is B) It allows the function to accept any number of additional named or unnamed arguments, often passed along to other functions
B
Correct Answer
It allows the function to accept any number of additional named or unnamed arguments, often passed along to other functions
Explanation
The "..." argument captures any number of extra arguments, which can be forwarded to other functions called within the function body.
Progress
52/100