splice()

차노·2023년 8월 15일
0

JS

목록 보기
45/96

The 'splice()' method in JavaScript is used to change the contents of an array by removing, replacing, or adding elements at a specific index.

splice() 메소드는 특정 인덱스에서 요소를 제거, 바꾸고, 추가함으로써 배열의 내용을 변경할 때 사용한다.

Unlike the 'slice()' method that cretates a new array, the 'splice()' method modifies the original array in place.

새로운 배열을 만드는 slice() 메소드와 달리, splice() 메소드는 그 자리에서 기존의 배열을 변경한다.

  • 'startIndex': The index at which to start modifying the array.
  • 'deleteCount': The number of elements to remove from the array, starting at the startIndex. if set to 0, no elements will be removed.

    시작 인덱스에서 시작하여 배열에서 제거해야 할 요소의 수. 0으로 설정된 경우, 제거할 요소는 없다.

  • '...itemsToAdd': Optional arguments representing the elements to be inserted at the startIndex.

    startIndex에서 들어가는 요소를 나타내는 선택적 인자.

I brought it back from chat Gpt.

'splice()' is a built-in method in JavaScript. It is used for deleting or inserting element in an array.

This method can delete elements specified number times starting from specified index in an array, and insert new element into an array when needed.

syntax

  • 'startIndex': 요소를 제거하거나 추가할 시작 인덱스.
  • 'deleteCount': 제거할 요소의 개수, 0일 경우 요소를 제거하지 않는다.
  • 'item1, item2, ...': 제거된 자리에 추가할 요소.

정의

제거한 요소들을 가리키는 배열 반환

0개의 댓글