0 / 60 seg.

What value is obtained when executing the following code?

function divide(a = 1, b = a) {
  return a / b;
}
console.log(divide());