美文网首页
js forEach 和 for循环 里面使用return

js forEach 和 for循环 里面使用return

作者: 王善良_ | 来源:发表于2020-12-31 16:07 被阅读0次

    使用forEach的回调函数里面return,是跳出本次循环

    在for循环里面return,是直接直接退出外层的函数,比如下面的test2里面去执行for循环,到4的时候直接退出test2,下面的console.log(5555)console.log(111111) 没有执行到

    const txt=[1,2,3,4,5,6,7];
    function test2(arr){
        for(let i=0;i<arr.length;i++){
            if(arr[i]===4){
                return;
            }
            if(arr[i]===5){
                console.log(5555)
            }
        }
        console.log(111111)
    }
    test2(txt);
    

    相关文章

      网友评论

          本文标题:js forEach 和 for循环 里面使用return

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