const add1 = function(a, b) { console.log(arguments); return a + b; }; const add = (a, b) => { console.log(arguments); // ReferenceError: arguments is not defined return a + b; }; add(1, 2);