标签: javascript coding-style iife
两个
(function () { // do something )();
和
(function () { // do something ());
工作正常。我想知道定义IIFE的传统方法是什么?为什么?