Is there any difference between: (function () {})()
, and (function () {}())
?
I've seen both constructs referenced, and would like to know if they represent two equivalent ways of constructing the exact same expression, or are they two different expressions/constructs altogether? If different, how are they different?