펼침연산자(Spread Operator) 변수명 앞에 마침표 3개 ( ... ) 로 표시. function spreadFn(...args) { console.log("output : " + args); } spreadFn(1, 2, 3,4,5); ============================ Output ============================ output : 1,2,3,4,5 더보기 이전 1 ··· 3 4 5 6 7 8 9 ··· 200 다음