function fun() { console.log(arguments)}fun(1, 2, 3)// [Arguments] { '0': 1, '1': 2, '2': 3 } function fun() { console.log([...arguments])}fun(1, 2, 3)// [ 1, 2, 3 ]