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() 메소드는 그 자리에서 기존의 배열을 변경한다.
시작 인덱스에서 시작하여 배열에서 제거해야 할 요소의 수. 0으로 설정된 경우, 제거할 요소는 없다.
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.
제거한 요소들을 가리키는 배열 반환