What will be the value of result after executing the following code?
function subtract(a, b) {
return a - b;
}
let result = subtract(10, 5) + 2;
What will be the value of result after executing the following code?
function subtract(a, b) {
return a - b;
}
let result = subtract(10, 5) + 2;