search

Home  >  Q&A  >  body text

javascript - Syntax issues about immediately executing functions in JS

(function () {
    console.log('test');
}());

(function() {
    console.log('test');
})();

I found that both of them can print out test. What is the difference? How to understand it? I hope God can teach me.

代言代言2744 days ago393

reply all(1)I'll reply

  • 黄舟

    黄舟2017-06-12 09:24:50

    There is no difference in operation. In terms of semantics, the first one is to treat the entire function execution result as an expression, and the second one is to treat the function as an expression

    reply
    0
  • Cancelreply