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

代言
代言

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!