var showArgs1 = function () { console.log(arguments) }
showArgs1(1,2,3);
//this prints arguments
var showArgs2 = () => { console.log(arguments) }
showArgs2(1,2,3);
//arguments is undefined
Why the showArgs2 function says arguments is undefined?