<script>
f1(); //f1 is no defind;
var f1=function(){ //自定义函数
console.log(a); // 不能够输出
var a=10;
}
// 解析 因为 var f1 会变量提升
var f1;
f1(); //f1 is no defind; 此时f1就不能调用
f1=function(){ //自定义函数
console.log(a); // a也自然不能输出
var a=10;
}
2023-12-15 17:46:09
<script>
f1(); //f1 is no defind;
var f1=function(){ //自定义函数
console.log(a); // 不能够输出
var a=10;
}
// 解析 因为 var f1 会变量提升
var f1;
f1(); //f1 is no defind; 此时f1就不能调用
f1=function(){ //自定义函数
console.log(a); // a也自然不能输出
var a=10;
}