본문 바로가기

javascript

자바스크립트 배열 특정 요소 삭제하기

var array = [0, 1, 2, 3, 4, 5];


Array.prototype.removeElement = function(index)

{

this.splice(index,1);

return this;

};


array.removeElement(2);


// array에는 세번째 요소가 빠진 상태가 된다.

[0, 1, 3, 4, 5,]