美文网首页
let与const的区别

let与const的区别

作者: 我食四条鱼 | 来源:发表于2017-12-04 21:45 被阅读0次
    • const
    const o = {a: 1};
    
    o.a = 2;
    o.b = 3;
    
    o={}//不能重写o,let就可以
    
    console.log(o);
    
    • let
    let arr = [];
    for(let i=0; i<5; i++){
        arr.push(function(){
            console.log(i);
        })
    }
    arr[1]()  // 5
    arr[2]()  // 5
    arr[3]()  // 5
    arr[4]()  // 5
    

    相关文章

      网友评论

          本文标题:let与const的区别

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