0 / 60 seg.

What will be the output of the following code?

function multiply(a, b) {
  return a * b;
}
let result = multiply(2, multiply(3, 4));
console.log(result);