function(a, b, ...args) {
console.log(arguments); // a, b, 그 뒤의 파라미터 전체 출력
console.log(args); // 추가 파라미터만 출력
}
웹 개발 개인 창고
function(a, b, ...args) {
console.log(arguments); // a, b, 그 뒤의 파라미터 전체 출력
console.log(args); // 추가 파라미터만 출력
}