标签:变量 not 创建 作用 形式 一个 bsp fine 总结
1 console.log(a); // undefined 2 var a = 12; // 12 3 function fn() { 4 console.log(a); // undefined 5 var a = 13; // 13 6 } 7 fn(); 8 console.log(a); // 12
1 console.log(a); // undefined 2 var a = 12; // 12 3 function fn() { 4 console.log(a); // 12 5 a=13; // 13 6 } 7 fn(); 8 console.log(a); // 13
9 // 结果为 undefined 、12 、13
1 console.log(a); // a is not defined 2 3 a=12; 4 function fn() { 5 console.log(a); 6 a = 13; 7 } 8 fn(); 9 console.log(a); 10 // a is not defined
标签:变量 not 创建 作用 形式 一个 bsp fine 总结
原文地址:https://www.cnblogs.com/lvyongbo/p/9938155.html