许多童鞋在写JavaScript的时候,在函数里声明变量对var关键字认识不深刻,这里就函数里声明变量的一点示例。
函数内使用var关键字声明变量
这种情况通常是声明的函数作为局部变量,即函数外不能使用
// 琼台博客 www.qttc.net
function fun1(){
// 声明变量,使用var关键字
var str = '琼台博客';
console.log(str); // Output: 琼台博客
}
fun1();
// 函数外使用变量
console.log(str); // Output: Uncaught ReferenceError: str is not defined
...

