• JavaScript 演练(6). 函数的定义与自执行



    /* 函数的定义 */
    function a() { return 1; }
    
    var b = function () { return 1; };
    
    var c = function d() { return 1; }; // d === undefined
    
    var e = new Function("return 1;");
    
    alert(typeof a); //function
    alert(typeof b); //function
    alert(typeof c); //function
    alert(typeof d); //undefined
    alert(typeof e); //function
    
    alert(a() + b() + c() + e()); //4
    
    
    /* 函数自执行 */
    (function (a, b) { alert(a + b); }) (1, 2);        //3
    
    (function (a, b) { alert(a + b); } (1, 2));        //3
    
    var f = function (a, b) { alert(a + b); } (1, 2);  //3; f === undefined
    

  • 相关阅读:
    webservice4
    webservice2
    webservice3
    webservice
    java 堆栈分析4
    java 堆栈分析3
    java 堆栈分析2
    java 堆栈分析
    数据库的Timeout
    node.js小结 2
  • 原文地址:https://www.cnblogs.com/del/p/2398473.html
Copyright © 2020-2023  润新知