美文网首页
数组中常用的方法,长期记录

数组中常用的方法,长期记录

作者: Dany__ | 来源:发表于2018-06-01 11:00 被阅读0次

    find() 方法返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined

    ```

    functionisBigEnough(element){returnelement>=15;}varret1=[12,5,8,130,44].find(isBigEnough);console.log(ret1);

    ```

    相关文章

      网友评论

          本文标题:数组中常用的方法,长期记录

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