Deciphering Function Output in JS

Report a typo

Consider the following JavaScript functions. What will be the logged output when

console.log(multiply(add(2, 3), 4));
is executed?
function add(x, y){
    return x + y;
}

function multiply(x, y){
    return x * y;
}
Select one option from the list
___

Create a free account to access the full topic