What value is obtained when executing the following code?
function sum(a = 2, b = 3) {
return a + b;
}
console.log(sum());
What value is obtained when executing the following code?
function sum(a = 2, b = 3) {
return a + b;
}
console.log(sum());