Enclosing parentheses in JavaScript

98 Views Asked by At

Could I get an explanation of the follow code snippet?

(function()
{
    alert();
})();

This looks like an anonymous function and the alert() function gets executed. I don't understand the semantic meaning of the outer parentheses. What does this part of the snippet mean?

(


 )()
1

There are 1 best solutions below

0
On BEST ANSWER

this represents the immediately executable function. in easier way, it means that function being declared and called/executed simultaneously.