摘要: - 来源 [三生石上] 翻译的JavaScript 秘密花园 (http://bonsaiden.github.io/JavaScript-Garden/zh/#core.undefined)- 访问声明,但是没有初始化的变量 ```js var aaa; console.log(aaa); // undefined ```- 访问不存在的属性 ```js var aaa = {}; console.log(aaa.c); ```- 访问函数的参数没有被显式的传递值 ```js (function (b){ consol... 阅读全文
posted @ 2014-02-13 15:41 责约果 阅读(2486) 评论(0) 推荐(0) 编辑