ES5新增数组方法(3):some

检查数组元素中是否有元素符合指定。

// 数组中的元素部分满足指定条件返回true
let arr = [1, 3, 5, 7, 9];
console.log(arr.some((value, index, array) => value > 10));// false
console.log(arr.some((value, index, array) => value > 8));// true

 

posted @ 2019-01-07 11:38  寒爵  阅读(309)  评论(0编辑  收藏  举报