To do: function的提升 var的提升
var c = 2;
function c(){
c = 22;
console.log("c="+c);
}
c();
本文标题:提升机制 hoisting
本文链接:https://www.haomeiwen.com/subject/dpvhjxtx.html
网友评论