Array.prototype.removeBeginWithVal(값으로 시작하는 배열의 문자열 객체 삭제)

2033 단어 prototype
Array 확장 방법:
 1 //author: Kenmu
 2 //created time: 2015-03-16
 3 //function:  
 4 Array.prototype.removeBeginWithVal = function (val) {
 5     for(var i=0, len = this.length; i < len; i++) {
 6         if(this[i].indexOf(val) != -1) {
 7             this.splice(i, 1);
 8             break;
 9         }
10     }
11 }; 

 
호출 방법:
1 var arr =["Kenmu", "DemandTypeStringCode"];
2 arr.removeBeginWithVal("DemandTypeStringCode"); //arr.length=1 after the operation of removeBeginWithVal

좋은 웹페이지 즐겨찾기