提升机制 hoisting 2017-09-01 本文已影响0人 强仔_5787 To do: function的提升 var的提升 var c = 2; function c(){ c = 22; console.log("c="+c); } c();