확장 연산자spread...

6750 단어
하나의 그룹을 쉼표로 구분된 매개 변수 서열로 바꾸기
console.log(...[1, 2, 3])
// 1 2 3

console.log(1, ...[2, 3, 4], 5)
// 1 2 3 4 5

[...document.querySelectorAll('div')]
// [
,
,
]

function push(array, ...items) {
  array.push(...items);
}

function add(x, y) {
  return x + y;
}

const numbers = [4, 38];
add(...numbers) // 42






좋은 웹페이지 즐겨찾기