Q. What will be the output of the following code snippet?
Code:
const example = ({ a, b, c }) => {
console.log(a, b, c);
};
example(0, 1, 2);
β
Correct Answer: (C)
Undefined Undefined Undefined