美文网首页
函数的声明方式

函数的声明方式

作者: 蒋小花_4b6c | 来源:发表于2020-05-07 13:13 被阅读0次

    1.函数构造器 

     new Function(……) 

    不常用

    var add = new Function("first", "second", "return first + second");

    console.log(add(1, 1)); // 2

    2.函数声明式

    function doSomething() { }

    常用

    function doSomething() {

        console.log('this is doSomething.');

    }

    doSomething();

    3.匿名函数表达式

    var doAnotherThing = function() { }

    常用

    var doAnotherThing = function() {

        console.log('this is doAnotherThing.');

    };

    doAnotherThing();

    相关文章

      网友评论

          本文标题:函数的声明方式

          本文链接:https://www.haomeiwen.com/subject/czaoghtx.html