美文网首页
ES6-变量

ES6-变量

作者: 测试探索 | 来源:发表于2022-07-07 21:42 被阅读0次

    一、let的三大特性之

    1-1:不存在变量提升
    image.png
    console.log(a);
    var a = 100;
    console.log(a);
    
    console.log(b);
    let b = 200;
    console.log(b);
    
    image.png
    1-2:不能重复声明
    image.png
    let b = 200;
    let b = 300;
    console.log(b);
    
    image.png
    1-3:块级作用域,变量只在代码块内有效
    image.png
    function func(){
        let n =5;
        if(true){
            let n = 10;
        }
        console.log(n);
    }
    func();
    
    image.png

    相关文章

      网友评论

          本文标题:ES6-变量

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