본문 바로가기
  • 삽질하는 자의 블로그
JavaScript

3. Array.splice() - 배열 수정하기 초간단정리

by 이게뭐당가 2022. 12. 12.

파라미터 

1. 원하는 index 선택

2. 해당 index 으로부터 몇개의 Element를 삭제할지 선택

3. 해당 index 에, 추가할 Element

    * Array.splice(IndexNumber, howManydelete, insertElement)

        const months = ['Jan', 'March', 'April', 'June'];

        months.splice(1, 0, 'Feb');
        console.log(months);        // ["Jan", "Feb", "March", "April", "June"]

        months.splice(4, 1, 'May');
        console.log(months);        // ["Jan", "Feb", "March", "April", "May"]

 

댓글