美文网首页
Array.prototype.every()

Array.prototype.every()

作者: 微笑的大步向前走 | 来源:发表于2019-11-21 15:26 被阅读0次

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

    比如说 验证一个数组里面 有么有 为空项,要是有的话,会返回 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()

          本文链接:https://www.haomeiwen.com/subject/qgrtwctx.html