What would the following code do?
I have used JS for years but haveno idea how this construct works?
(function() { /* No implementation yet */ })();
Knowing that there is no implementation - if there were - how would I invoke it? Would the following make an anonymous object?
var temp = (function() { })();
Which I could use as:
temp.doWhateverDefined();