What value is obtained when executing the following code?
function divide(a = 1, b = a) {
return a / b;
}
console.log(divide());
What value is obtained when executing the following code?
function divide(a = 1, b = a) {
return a / b;
}
console.log(divide());