What are the difference among -
First :-
(function () { var Book = \'hello\'; }());
Second:-
These all are self executing functions. Now days also known as Immediately Invoked Function Expressions (IIFE).
First two are exactly same with slightly different syntax and third is passing a parameter as jQuery object.
parameter