- 匿名自执行函数:
(function(){
// code here
})();
- 立即调用函数表达式(IIFE):
(() => {
// code here
})();
- 使用逗号操作符:
,(function(){
// code here
})();
- eval 函数:
eval('(function(){/*code here*/})()');
(function(){
// code here
})();
(() => {
// code here
})();
,(function(){
// code here
})();
eval('(function(){/*code here*/})()');