0 / 60 seg.

What will be the value of result after executing the following recursive function?

function power(base, exponent) {
  if (exponent === 0) {
    return 1;
  }
  return base * power(base, exponent - 1);
}
let result = power(2, 4);