top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the reason for, wrapping the entire content of a JavaScript source file in a function block?

+3 votes
713 views
What is the reason for, wrapping the entire content of a JavaScript source file in a function block?
posted Jun 15, 2015 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

This is an increasingly common practice, employed by many popular JavaScript libraries (jQuery, Node.js, etc.). This technique creates a closure around the entire contents of the file which, perhaps most importantly, creates a private namespace and thereby helps avoid potential name clashes between different JavaScript modules and libraries.

Another feature of this technique is to allow for an easily referenceable (presumably shorter) alias for a global variable. This is often used, for example, in jQuery plugins. jQuery allows you to disable the $ reference to the jQuery namespace, using jQuery.noConflict(). In this has been done, your code can still use $ employing this closure technique, as follows:

answer Jun 15, 2015 by Vrije Mani Upadhyay
...