Question 48 of 5883%
48

What will be the output of the following log statements?

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

myFunc(1, 2, 3);
48/58