写点什么

Vue 进阶(五十七):ES 数组操作:find(), findIndex(), filter(), forEach(), some(), every(), map(), reduce()

用户头像
华强
关注
发布于: 1 小时前
Vue进阶(五十七):ES数组操作:find(), findIndex(), filter(), forEach(), some(), every(), map(), reduce()

一、find() 与 findIndex()

find()用于找出第一个符合条件的数组成员。它的参数是一个回调函数,所有数组成员依次执行该回调函数,直到找出第一个返回值为true的成员,然后返回该成员。如果没有符合条件的成员,则返回undefined


[1, 2, 5, -1, 9].find((n) => n < 0)//找出数组中第一个小于 0 的成员// -1
复制代码


find()回调函数可以接受三个参数,依次为当前的值、当前的位置和原数组。


findIndex()用法与 find()非常类似,返回第一个符合条件的数组成员位置,如果所有成员都不符合条件,则返回-1。


[1, 2, 5, -1, 9].findIndex((n) => n < 0)//返回符合条件的值的位置(索引)// 3
const fruits = [ {name: 'apples', quantity: 2}, {name: 'bananas', quantity: 0}, {name: 'cherries', quantity: 5}];const index = fruits.findIndex(fruit => fruit.name === 'cherries');console.log(index); // 3console.log(fruits[index]);
复制代码


另外,这两个方法都可以发现NaN,弥补了数组的IndexOf()的不足。


[NaN].indexOf(NaN)// -1[NaN].findIndex(y => Object.is(NaN, y))// 0
复制代码


上面代码中,indexOf()无法识别数组的NaN成员,但是findIndex()可以借助Object.is方法做到。

二、filter()

filter()使用指定的函数测试所有元素,并创建一个包含所有通过测试元素的新数组。filter() 为数组中的每个元素调用一次 callback 函数,并利用所有使得 callback 返回 true 或 等价于 true 的值元素创建一个新数组。那些没有通过 callback 测试的元素会被跳过,不会被包含在新数组中。filter() 不会改变原数组。


var arr = [10, 20, 30, 40, 50]var newArr = arr.filter(item => item > 30);console.log(newArr); //[40, 50]
复制代码

三、forEach()

遍历数组全部元素,利用回调函数对数组进行操作,自动遍历整个数组,且无法break中途跳出循环,不可控,不支持return操作,return只用于控制循环是否跳出当前循环。


回调有三个参数:第一个参数是遍历的数组内容,第二个参数是对应的数组索引,第三个参数是数组本身。


var arr = [1,2,3,4,5,] ;arr.forEach(function(item,index){  console.log(item);});
复制代码


该方法无返回值,仅仅是遍历数组中的每一项,不对原来数组进行修改;可以自己通过数组索引来修改原来的数组;


var ary = [12,23,24,42,1];  var res = ary.forEach(function (item,index,input) {     input[index] = item*10;  })  console.log(res);//--> undefined;  console.log(ary);//--> 通过数组索引改变了原数组;  
复制代码

四、some() 和 every()

every()some()都是JS数组的迭代方法, 只返回布尔值。

4.1 every()

判断数组中是否每个元素都满足条件:


  • 只有都满足条件才返回true

  • 只要有一个不满足就返回false

4.2 some()

判断数组中是否至少有一个元素满足条件:


  • 只要有一个满足就返回true;

  • 只有都不满足时才返回false;


// 判断数组arr1是否全是偶数// 判断数组arr2是否至少有一个偶数var arr1=[1, 2, 3, 4, 5];var arr2=[1, 4, 6, 8, 10];console.log(  arr1.every(function(value, index, array){      return value % 2 == 0;  }));    // falseconsole.log(  arr2.some(function(value, index, array){      return value % 2 == 0;  }));    // true
复制代码

五、map()

map() 返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。


map() 按照原始数组元素顺序依次处理元素。


注意:

  1. map() 不会对空数组进行检测。

  2. map() 不会改变原始数组。


array.map(function(currentValue,index,arr), thisValue)
var data = [1, 2, 3, 4]; var arrayOfSquares = data.map(function (item) { //接收新数组 return item * item;}); alert(arrayOfSquares); // [1, 4, 9, 16]
复制代码

六、 reduce()

reduce()接收一个函数作为累加器(accumulator),数组中的每个值(从左到右)开始合并,最终为一个值.


array.reduce(callback, initialValue)
复制代码


callback:执行数组中每个值的函数(也可以叫做reducer),包含 4 个参数.


  1. previousValue: 上一次调用回调返回的值,或者是提供的初始值(initialValue);

  2. currentValue: 数组中当前被处理的元素;

  3. index: 当前元素在数组中的索引;

  4. array: 调用reduce的数组;


// 获取购物车中商品列表的价格总和let goodList = [{id: 1, price: 10, qty: 5}, {id: 2, price: 15, qty: 2}, {id: 3, price: 20, qty: 1}] let totalPrice = goodList.reduce((prev, cur) => {  return prev + cur.price * cur.qty}, 0) console.log(totalPrice) // 100
var arrString = 'abcdaabc'// 获取字符中中每个字母出现的次数let count = arrString.split('').reduce(function(res, cur) { res[cur] ? res[cur]++ : res[cur] = 1 return res}, {}) console.log(count) // {a: 3, b: 2, c: 2, d: 1}
复制代码

七、拓展阅读

发布于: 1 小时前阅读数: 3
用户头像

华强

关注

No Silver Bullet 2021.07.09 加入

岂曰无衣 与子同袍

评论

发布
暂无评论
Vue进阶(五十七):ES数组操作:find(), findIndex(), filter(), forEach(), some(), every(), map(), reduce()