Can someone explain me which bracket here is used for what?
let myModule = (function() {})();
i know that the inner part = function() { // Some stuff here } is a function, so what does
(innerpart)();
? How and why is it different from
let myModule = function() {}