es6 some方法
ES6的Array.prototype.some()方法用于检测数组中的元素是否满足指定条件(提供函数)。
一旦有一个元素满足条件,则表达式返回true,剩余的元素不再执行检测。
some() 方法的语法如下:函数prototype
array.some(function(currentValue, index, arr), thisValue)。
参数:
function(currentValue, index, arr):必需。函数可以接受三个参数:
currentValue:必需。当前元素的值。
index:可选。当前元素的索引值。
arr:可选。当前元素属于的数组对象。
thisValue:可选。对象作为该执行回调时用作 this 的值。 。
some() 方法会依次执行数组的每个元素:
如果有一个元素满足条件,则表达式返回true , 剩余的元素不再执行检测。
如果没有满足条件的元素,则返回false。 。
some() 方法不会对空数组进行检测。
示例:
var array = [1, 2, 3, 4, 5];。
var even = function(element) 。
// checks whether an element is even。
return element % 2 === 0;。
};。
console.log(array.some(even));。
// expected output: true。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论