function logArguments(a, b, c) { console.log(arguments[0], arguments[1], arguments[2]); console.log(arguments); } test(1,2,3); // Output // 1, 2, 3 // [Arguments] { '0': 1, '1': 2, '2': 3 }