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

使用var提升变量声明

时间:2016-11-01 18:29:54      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:提前   var   world   function   定义变量   提升   define   声明   定义   

使用var 定义变量还会提升变量声明,即
使用var定义:
function hh(){
console.log(a);
var a = ‘hello world‘;
}
hh() //undefined

不使用var定义:
function hh(){
console.log(a);
a = ‘hello world‘;
}
hh() // ‘a is not defined‘

这就是使用var定义的变量的声明提前。

使用var提升变量声明

标签:提前   var   world   function   定义变量   提升   define   声明   定义   

原文地址:http://www.cnblogs.com/lxlin/p/6020370.html

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