作家
登录

JavaScript 5 新增 Array 方法实现介绍

作者: 来源:www.28hudong.com 2013-03-30 00:34:21 阅读 我要评论

复制代码 代码如下: /*! * jLip JavaScript Library v0.1 * * Copyright 2012, Lip2up (lip2up@qq.com) * Just for free use, NO LICENSE */ (function() { function extend(target, props) { for (var m in props) { if (target[m] === undefined) target[m] = props[m]; } } var fns = { every: 1, some: 2, forEach: 3, map: 4, filter: 5 }, reduceError = 'Reduce of empty array with no initial value'; function each(fn, _this, kind) { var len = this.length, ret = kind == fns.filter ? [] : kind == fns.map ? Array(len) : undefined, find = kind == fns.some, i, v; for (i = 0; i < len; i++) { if (this[i] !== undefined) { v = fn.call(_this, this[i], i, this); switch (kind) { case fns.every: case fns.some: if (v === find) return find; break; case fns.map: ret[i] = v; break; case fns.filter: if (v === true) ret[ret.length] = this[i]; break; } } } return kind >= fns.forEach ? ret : !find; } function reduce(fn, init, right) { var len = this.length, i, prev, inc = right ? -1 : 1; if (len == 0 && init === undefined) throw TypeError(reduceError); for (i = right ? len - 1 : 0, prev = init; prev === undefined && (right ? i >= 0 : i < len); i += inc) { prev = this[i]; } if (prev === undefined && i == (right ? -1 : len)) throw TypeError(reduceError); for (; (right ? i >= 0 : i < len); i += inc) { if (this[i] !== undefined) prev = fn(prev, this[i], i, this); } return prev; } extend(Array.prototype, { every: function(fn, _this) { return each.call(this, fn, _this, fns.every); }, some: function(fn, _this) { return each.call(this, fn, _this, fns.some); }, forEach: function(fn, _this) { return each.call(this, fn, _this, fns.forEach); }, map: function(fn, _this) { return each.call(this, fn, _this, fns.map); }, filter: function(fn, _this) { return each.call(this, fn, _this, fns.filter); }, reduce: function(fn, init) { return reduce.call(this, fn, init); }, reduceRight: function(fn, init) { return reduce.call(this, fn, init, true); } }); })();

  推荐阅读

  ASP.NET jQuery 实例11 通过使用jQuery validation插件简单实现用户登录页面验证功能

简单来说,jQuery validation插件就是来校验表单form里面元素输入的内容是否满足业务规则,如果不满足,可以给出用户自定义的提示信息。该插件不仅默认有一些校验规则,如校验内容是否为空,内容的长度是否符合给定>>>详细阅读


本文标题:JavaScript 5 新增 Array 方法实现介绍

地址:http://www.17bianji.com/kaifa2/JS/23681.html

关键词: 探索发现

乐购科技部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与乐购科技进行文章共享合作。

网友点评
自媒体专栏

评论

热度

精彩导读
栏目ID=71的表不存在(操作类型=0)