What value is obtained when executing the following code?
const divide = (a, b) => (b !== 0 ? a / b : "Cannot divide by zero");
console.log(divide(10, 2));
What value is obtained when executing the following code?
const divide = (a, b) => (b !== 0 ? a / b : "Cannot divide by zero");
console.log(divide(10, 2));