|
1
2 |
var aaa;console.log(aaa); // undefined |
|
1
2 |
var aaa = {};console.log(aaa.c); |
|
1
2
3 |
(function
(b){ console.log(b); // undefined})(); |
|
1
2 |
var aaa = undefined;console.log(aaa); // undefined |
没有定义 return 的函数隐式返回
|
1
2 |
function
aaa(){}console.log(aaa()); // undefined |
函数 return 没有显式的返回任何内容
|
1
2
3
4 |
function
aaa(){ return;}console.log(aaa()); // undefined |
原文:http://www.cnblogs.com/maiyan/p/3548223.html