Default Parameters

What does the following code output? function test(a = 1, b = 2, c = 3) { console.log(arguments.length); } test(5, undefined, 10);
Next Question (16/21)