0 / 60 seg.

What value is obtained when executing the following code?

function sumSquares(a, b) {
  function square(x) {
    return x * x;
  }
  return square(a) + square(b);
}
console.log(sumSquares(2, 3));