Can anyone please explain what is the meaning/use of this following expression in JavaScript.Is it advantageous ?
; (function() {....//..... }());
Note the use of semi-colon before the function declaration.Can it be used , I know its related to IIFE(immediately invoked function Expression)...Can Someone shed some more light on the usage of these declarations.