프로그램/script

javascript array 의 중간 멤버 삭제 하기

mulderu 2011. 2. 7. 16:06

갑자기 필요해서.. 구글링 해보니 좋은 예제가 있더군요.... 긴급 공유 합니다.


간단히 Array의 특정 index element 삭제 하기

function removeByIndex(arrayName,arrayIndex){ 
    
arrayName.splice(arrayIndex,1); 
}




좀더 나이스하게 처리 하기 (Array에 멤버함수 추가)


// Array Remove - By John Resig (MIT Licensed)
Array.prototype.remove = function(from, to) {
  var rest = this.slice((to || from) + 1 || this.length);
  this.length = from < 0 ? this.length + from : from;
  return this.push.apply(this, rest);
};