码迷,mamicode.com
首页 > 其他好文 > 详细

filter,forEach和some用法

时间:2020-05-10 01:24:32      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:char   rip   htm   ons   数组   title   color   script   返回值   

一、forEach(),用于遍历数组,无返回值

二、some(),用于判断数组中的是否存在满足条件的元素,返回一个布尔值

三、filter(),用于筛选数组中满足条件的元素,返回一个筛选后的新数组

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <script>
        var arr = [‘yellow‘, ‘green‘, ‘red‘, ‘pink‘];
        // 1. forEach迭代 遍历
        arr.forEach(function(value) {
            if (value == ‘green‘) {
                console.log(‘找到了该元素‘);
                // 在forEach 里面 return 不会终止迭代
                return true; 
            }
            console.log(11);

        })
        // 如果查询数组中唯一的元素, 用some方法更合适,
        arr.some(function(value) {
            if (value == ‘red‘) {
                console.log(‘找到了该元素‘);
                //  在some 里面 遇到 return true 就是终止遍历 迭代效率更高
                return true; 
            }
            console.log(11);

        });
        arr.filter(function(value) {
            if (value == ‘pink‘) {
                console.log(‘找到了该元素‘);
                // filter 里面 return 不会终止迭代
                return true; 
            }
            console.log(11);

        });
    </script>
</body>

</html>

 

filter,forEach和some用法

标签:char   rip   htm   ons   数组   title   color   script   返回值   

原文地址:https://www.cnblogs.com/sad-dog/p/12861166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!