数组方法(find,findIndex 和 includes)

手册地址:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array

find()

find() 方法返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined

语法:arr.find(callback[, thisArg])

callback

在数组每一项上执行的函数,接收 3 个参数:

    1.element

            当前遍历到的元素。

    2.index可选

            当前遍历到的索引。

    3.array可选

            数组本身。

thisArg可选

执行回调时用作this的对象。

数组方法(find,findIndex 和 includes)_第1张图片

findIndex()

findIndex() 方法返回数组中满足提供的测试函数的第一个元素的索引。否则返回-1。

语法:arr.findIndex(callback[, thisArg])

数组方法(find,findIndex 和 includes)_第2张图片

includes()

includes() 方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回false。

如果需要找到一个元素的位置或者一个元素是否存在于数组中,使用Array.prototype.indexOf() 或 Array.prototype.includes()。

语法:arr.includes(valueToFind[, fromIndex])
valueToFind
需要查找的元素值。使用includes()比较字符串和字符时是区分大小写。

fromIndex 可选
从fromIndex 索引处开始查找 valueToFind。如果为负值,则按升序从 array.length + fromIndex的索引开始搜
(即使从末尾开始往前跳 fromIndex的绝对值个索引,然后往后搜寻)。默认为 0。

在这里插入图片描述

你可能感兴趣的:(数组方法,es6)