- 특정 배열의 시작 위치부터 종료 위치에 대해 특정 요소들을 복사해 새로운 배열 객체로 반환
- 매개변수로는 추출 시작점을 알리는 startIndex, 추출을 종료할 endIndex가 있다.
- 추출 범위는 startIndex ~ endIndex - 1 범위의 요소가 추출된다.
array.slice(startIndex, endIndex);
const arr = [10, 20, 30, 40, 50];
console.log(arr.slice(2,4));
console.log(arr.slice(2));
endIndex를 생략한 경우 참조한 배열의 지정한 startIndex부터 배열 끝 요소 까지 추출된다.