概述
转载:
-
https://www.cnblogs.com/echolun/p/11544045.html
-
https://www.cnblogs.com/echolun/p/10651039.html
区别:
- for循环可以使用break跳出循环,但forEach不能跳出循环;
- for循环可以控制循环起点(i初始化的数字决定循环的起点),forEach只能默认从索引0开始。
- for循环过程中支持修改索引(修改 i),但forEach做不到(底层控制index自增,我们无法左右它)。
- forEach中使用return无效。
应用
- 请问,这段代码执行完毕后arr输出为多少?循环体内的console操作会执行几次?
let arr = [1, 2];
arr.forEach((item, index) => {
arr.splice(index, 1);
console.log(1); //输出几次?
});
console.log(arr) //?
- forEach的完整参数
arr.forEach(function(self,index,arr){},this);
- 数组去重
let arr1 = [1, 2, 1, 3, 1];
let arr2 = [];
arr1.forEach(function (self, index, arr) {
arr.indexOf(self) === index ? arr2.push(self) : null;
});
console.log(arr2); //[1,2,3]
最后
以上就是感动板栗为你收集整理的for循环和forEach详解的全部内容,希望文章能够帮你解决for循环和forEach详解所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复