Array.prototype.every()

就是最近用到了 这个方法,突然觉得很优雅,所以记录下

比如说 验证一个数组里面 有么有 为空项,要是有的话,会返回 false

const isBelowThreshold = (currentValue) => currentValue.trim() !== '';

const array1 = ['11','   '];

console.log(array1.every(isBelowThreshold));   // false

记录一下

相关文档:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every

你可能感兴趣的:(Array.prototype.every())