<div class="codetitle"> <span><a style="CURSOR: pointer" data="12145" class="copybut" id="copybut12145" onclick="doCopy('code12145')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code12145"> <br>Array.prototype.remove = function(b) { <br>var a = this.indexOf(b); <br>if (a >= 0) { <br>this.splice(a, 1) <br>return true; false; <br>}; <br><br><br> </div>나중에 이 함수를 사용하여 배열의 값을 직접 삭제할 수 있습니다.