What is the result of the following expression?
function multiply(a = 2, b) {
return a * b;
}console.log(multiply(undefined, 3));
What is the result of the following expression?
function multiply(a = 2, b) {
return a * b;
}console.log(multiply(undefined, 3));