splice
특정 구간을 삭제할 때 사용한다.
예시)
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
numbers.splice(0, 4);
console.log(numbers);
출력되는 것은
(6) [5, 6, 7, 8, 9, 10]
제외된 숫자들은
const splicedNumbers = numbers.splice(0, 4);
console.log(splicedNumbers);
변수에 담아서 출력해 볼 수 있다.
(4) [1, 2, 3, 4]
slice
기존의 배열을 건드리지 않고 조건에 맞는 원소를 가져온다.
예시)
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const slicedNumbers = numbers.slice(0, 6);
console.log(slicedNumbers);
console.log(numbers);
slice(start, end) 첫 index부터 끝 index이지만 끝 index전 까지만 해당된다.
그러므로 출력되는 것은
(6) [1, 2, 3, 4, 5, 6]
(10) [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
기존의 배열 numbers의 값은 그대로 있다.