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