배열 복사 메서드 slice()

리충녕·2023년 11월 18일
0

Javascript

목록 보기
42/50

📖 Array.slice()

  • 특정 배열의 시작 위치부터 종료 위치에 대해 특정 요소들을 복사해 새로운 배열 객체로 반환
  • 매개변수로는 추출 시작점을 알리는 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부터 배열 끝 요소 까지 추출된다.


참고
Array.slice()

0개의 댓글