컴퓨터/Javascript
Javascript splice 배열에 요소 끼워 넣기
sayyesdoit
2022. 11. 23. 20:22
let arr = ['a', 'c'];
arr.splice(1, 0, 'c'); //시작 인덱스, 지울 요소 갯수, 삽입할 요소