一起学习JS《迭代方法》

timg.jpg

迭代中的五种方法:every, some, filter,map, forEach.
every: 返回
some:一些
filter:过滤器
map:映射
forEach:循环的循环计算器.

一些简单英语翻译:
item:项目
index:索引
array:数值
function:函数
result:结果
return:回报
numbers:数字
every如果每个数据项都返回true,every方法返回true,否则返回false。如下:

var a = [1, 2, 3, 4, 5, 6];
        var result = a.every(function (item, index, array) {
            return item > 2;
        })
        console.log(result);
image.png

some如果有一个数据项返回true,some方法返回true,否则返回false。如下:[图片上传中...(timg (1).jpg-ee6bfb-1562073422239-0)]

var a = [1, 2, 3, 4, 5, 6];
        var result = a.some(function (item, index, array) {
            return item > 2;
        })
        console.log(result);

image.png

filter返回所有返回true的数据组成的新数组。如下:

var a = [1, 2, 3, 4, 5, 6];
        var result = a.filter(function (item, index, array) {
            return item > 2;
        })
        console.log(result);
image.png

forEach不返回值,跟for循环一样,可以在forEach中进行一些操作

var a = [1, 2, 3, 4, 5, 6];
        a.forEach(function (item, index, array) {
            console.log(item);
        })![timg (1).jpg](https://upload-images.jianshu.io/upload_images/18120379-fe69b811f16066a6.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

image.png

map返回每个数据经过相应的操作后组成的新数组。如下:

var a = [1, 2, 3, 4, 5, 6];
        var result = a.map(function (item, index, array) {
            return item * 2;
        })
        console.log(result);
image.png

timg (1).jpg

你可能感兴趣的:(一起学习JS《迭代方法》)