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;
}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;
}Create a free account to access the full topic