Question 86 of 10086%
86

What will be the output of the following log statements?

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

myFunc(1, 2, 3);
86/100