js (function () {} ()) and (function () {}) () function is executed immediately

(function(){
	待执行函数
}())

(function(){
	待执行函数
	})()

Both versions are written for performing the function immediately, namely IIFE (Immediately Invoked Function Expression). Such a function where the function definition directly executed.

Published 252 original articles · won praise 3 · Views 3263

Guess you like

Origin blog.csdn.net/weixin_43294560/article/details/103671949