标签:调用函数 函数 console OLE func log 函数定义 调用 语句
eg:
var a=3
function fn(){
console.log(a)
var a=4;
}
fn()
输出undefined
变量提升:
console.log(b)//undefined 变量提升
var b=3;
fn2()//可调用函数提升
function fn2(){
console.log(‘ fn2()‘)
}
变量声明提升
1.通过var定义(声明)的变量,在定义语句之前就可以访问到值:undefined
函数声明提升
1.通过function声明的函数,在之前就可以直接调用
2.值:函数定义(对象)
标签:调用函数 函数 console OLE func log 函数定义 调用 语句
原文地址:https://www.cnblogs.com/likaibei/p/9884429.html