Hello I've got a function like this one.
function doSomething () {
( function () {
// callbacks and code
}
)();
}
I am not use to that typing, I'm looking forward to understand how is interpreted by the browser or what does it mean the ( function () ) (); Thought I know the differences between calls and assigns , I can't read this properly , surely is something simple but I don't really get it. Thanks.