JS中关于some(),every(),forEach(),map(),filter()之间的区别介绍
程序员文章站
2022-09-24 11:18:01
js在1.6中为array新增了几个方法map(),filter(),some(),every(),foreach(),也就是一共有这么多方法了。
刚开始接触这些倒也记得不是很清楚,在此纪录一下以加...
js在1.6中为array新增了几个方法map(),filter(),some(),every(),foreach(),也就是一共有这么多方法了。
刚开始接触这些倒也记得不是很清楚,在此纪录一下以加深影响。我主要从两个角度来理解和记忆吧,一个是api的使用,一个是内部实现。
函数简述
map():返回一个新的array,每个元素为调用func的结果
filter():返回一个符合func条件的元素数组
some():返回一个boolean,判断是否有元素是否符合func条件
every():返回一个boolean,判断每个元素是否符合func条件
foreach():没有返回值,只是针对每个元素调用func
api的区别
function my_func(item) { if (item == 1) { console.log('t'); return true; } console.log('f'); return false; } // init an array l = [0,1,2,3,4] // print: f,t,f,f,f // return:[false, true, false, false, false] l.map(my_func) // print: f,t,f,f,f // return: 1 l.filter(my_func) // print: f,t // return: true l.some(my_func) // print: f // return: false l.every(my_func) // print: f,t,f,f,f //return: undefined l.foreach(my_func) 内部实现 // from:https://developer.mozilla.org array.prototype.map = function(fun /*, thisp*/) { var len = this.length; if (typeof fun != "function") throw new typeerror(); var res = new array(len); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in this) res[i] = fun.call(thisp, this[i], i, this); } return res; }; array.prototype.filter = function(fun /*, thisp*/) { var len = this.length; if (typeof fun != "function") throw new typeerror(); var res = new array(); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in this) { var val = this[i]; // in case fun mutates this if (fun.call(thisp, val, i, this)) res.push(val); } } return res; }; array.prototype.some = function(fun /*, thisp*/) { var len = this.length; if (typeof fun != "function") throw new typeerror(); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in this && fun.call(thisp, this[i], i, this)) return true; } return false; }; array.prototype.every = function(fun /*, thisp*/) { var len = this.length; if (typeof fun != "function") throw new typeerror(); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in this && !fun.call(thisp, this[i], i, this)) return false; } return true; }; array.prototype.foreach = function(fun /*, thisp*/) { var len = this.length; if (typeof fun != "function") throw new typeerror(); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in this) fun.call(thisp, this[i], i, this); } };
下一篇: JS面向对象编程学习之构造函数的继承理解
推荐阅读
-
JS中关于some(),every(),forEach(),map(),filter()之间的区别介绍
-
浅析JS中的 map, filter, some, every, forEach, for in, for of 用法总结
-
js数组中的find(), findIndex(), filter(), forEach(), some(), every(), map(), reduce()方法的详解和应用实例
-
浅析JS中的 map, filter, some, every, forEach, for in, for of 用法总结
-
JS中关于some(),every(),forEach(),map(),filter()之间的区别介绍
-
详细介绍在JS中Map和ForEach的区别
-
js数组中的find(), findIndex(), filter(), forEach(), some(), every(), map(), reduce()方法的详解和应用实例
-
详细介绍在JS中Map和ForEach的区别