美文网首页
提升机制 hoisting

提升机制 hoisting

作者: 强仔_5787 | 来源:发表于2017-09-01 11:06 被阅读0次

    To do: function的提升 var的提升

    var c = 2;

    function c(){

    c = 22;

    console.log("c="+c);

    }

    c();

    相关文章

      网友评论

          本文标题:提升机制 hoisting

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