array.some()
只要其中一个为true 就会返回true;array.every()
必须所有都返回true才会返回true,哪怕有一个false,就会返回falseconsole.log([10,20,30].some(x => x > 25) )// true
console.log([10,20,-30].some(x => x>25) )// false
console.log([10,20,30].every(x => x > 0) )// true
console.log([10,20,-30].every(x => x > 0) )// false