0
我是javaScript模塊中的新成員。我看了很多文章,並找到模塊定義有以下兩種不同的方式:javaScript中關閉模塊和關閉模塊之後'()'或'(otherModule)'之間的區別
// '()' after module close
var firstModule = (function() {
// Module defination goes here
})();
// '()' before module close
var secondModule = (function() {
// Module definition goes here
}());
我嘗試都沒有找到任何區別。
請回復兩者之間的區別,在這種情況下,我們必須使用哪種類型的聲明?