码迷,mamicode.com
首页 > 其他好文 > 详细

变量提升与函数提升

时间:2018-10-31 17:51:40      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:调用函数   函数   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!