jQuery源码分析系列 学习记录

最近在跟nuysoft 的 jQuery源码分析系列 ,把不深入的知识点自己做些摘要取出来,记录下。

 1. 函数自调用括号有两种写法(仔细看括号的位置):

(function() {
    console.info( this );
    console.info( arguments );
}( window ) );         //(foo{}());

(function() {
    console.info( this );
    console.info( arguments );
}) ( window ));       //(foo{})();

2.  undefined可以被重写,必要时需要显式赋值.

在在参数列表中增加undefined呢?

在 自调用匿名函数 的作用域内,确保undefined是真的未定义。因为undefined能够被重写,赋予新的值。

undefined = "defined";
console.log(undefined);

  测试结果:    ie7/8/9: "defined";    

                         chrome 32,firefox26: "undefined"

3.

我相信,会有一个公正而深刻的认识来为我们总结的:那时,我们这一代独有的奋斗、思索、烙印和选择才会显露其意义。 ——《北方的河》

博文来源:http://www.cnblogs.com/liaopr

如果您觉得本文的内容对您的学习有所帮助,可以选择打赏我一杯咖啡:D

原文地址:https://www.cnblogs.com/liaopr/p/3557180.html