码迷,mamicode.com
首页 > 编程语言 > 详细

Array.prototype.removeBeginWithVal(删除数组内以某值开头的字符串对象)

时间:2015-05-28 17:55:09      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

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

 

Array.prototype.removeBeginWithVal(删除数组内以某值开头的字符串对象)

标签:

原文地址:http://www.cnblogs.com/huangjianwu/p/4536432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!