javascript - Syntax issues about immediately executing functions in JS
代言
代言 2017-06-12 09:22:50
0
1
390
(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.

代言
代言

reply all(1)
黄舟

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template