javascript Array.some和Array.every
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Array.some和Array.every相关的知识,希望对你有一定的参考价值。
const heroes = [
{
name: 'Black Widow',
superHero: true,
team: 'Avengers'
},
{
name: 'Thor',
superHero: true,
team: 'Avengers'
},
{
name: 'Captain America',
superHero: true,
team: 'Avengers'
},
{
name: 'Mr. Bean',
superHero: false,
team: 'Great-Britain'
},
{
name: 'Batman',
superHero: true,
team: 'Justice League'
},
]
// Do we have a hero in the array?
const heroesPresent = heroes.some(hero => hero.superHero === true);
console.log(heroesPresent);
// Are all these people heroes?
const allHeroes = heroes.every(hero => hero.superHero === true);
console.log(allHeroes);
以上是关于javascript Array.some和Array.every的主要内容,如果未能解决你的问题,请参考以下文章
在javascript中嵌套array.some()
some()方法:检测数组中的元素是否满足指定条件
数组的方法 Array.map();Array.every()和Array.some();数组的indexof();
Javascript-多个数组是否有一样值
Typescript - 无法在 Array.some [重复] 中访问“this”
array.some() 方法兼容ie8