Question 42 of 5281%
42

What will be the output of the following log statements?

const myFunc = ({ x, y, z }) => {
  console.log(x, y, z);
};

myFunc(1, 2, 3);
42/52