What is the result of the following expression?
const myFunction = () => {
console.log(arguments);
};
myFunction(1, 2, 3);
What is the result of the following expression?
const myFunction = () => {
console.log(arguments);
};
myFunction(1, 2, 3);