美文网首页
js for循环不能直接改变当前项

js for循环不能直接改变当前项

作者: 蜗牛Coming | 来源:发表于2022-11-10 18:18 被阅读0次
    var arr =[{name:'tom'},{name:'john'},{name:'jim'}];
    arr.forEach((item)=>{
    if(item.name==="john"){
    item={name:'aaa'}
    }
    });
    

    为啥不能改?底层原因是啥呢?

    相关文章

      网友评论

          本文标题:js for循环不能直接改变当前项

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