Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript return with colon

I am learning JavaScript and have come across of the structure below:

var Test = (function () {    function func1() {       //do something.....   }    function func2() {       //do something.....   }    function func3() {       //do something.....   }    return {       func1: func1,       func2: func2,       func3: func3   };  })(); 

I am wondering what the return block is doing. Is this a very commonly used JavaScript structure? Please let me know where can I get more information about this.

like image 242
Sean Avatar asked Sep 10 '15 07:09

Sean


People also ask

What Does a colon do in JavaScript?

The colon symbol ( : ) is generally used by JavaScript as a delimiter between key/value pair in an object data type. For example, you may initialize an object named car with key values like brand and color as follows: let car = { brand: "Toyota", color: "red", };

What is $() in JavaScript?

The $() function The dollar function, $(), can be used as shorthand for the getElementById function. To refer to an element in the Document Object Model (DOM) of an HTML page, the usual function identifying an element is: document. getElementById("id_of_element").

What does return [] do in JavaScript?

The return statement stops the execution of a function and returns a value from that function.

What does colon do in TypeScript?

The type syntax for declaring a variable in TypeScript is to include a colon (:) after the variable name, followed by its type. Just as in JavaScript, we use the var keyword to declare a variable. Declare its type and value in one statement.


2 Answers

This is the Revealing Module Pattern.

The returned object contains references to the functions defined inside the IIFE. So the functions defined inside are private to the anonymous function.

But if you want to use the inner functions outside, you can use the returned object.

The value of Test will be

var Test = {     func1: func1,     func2: func2,     func3: func3 }; 

And you can call func1 from outside as

Test.func1(); 

This is the way Javascript emulate class. As there is no visibility specifiers using Module pattern, variables/methods can be make public/private.

enter image description here

The revealing module pattern is inspired from Module pattern. In revealing module pattern, only reference to the private variables/methods is returned in an object.

The main idea behind the pattern is avoiding evil global variables. This looks similar to IIFE except an object is returned instead of function. The variables/methods defined inside the IIFE are private to the function. To access any variable/method inside the IIFE, it needs to be added in the returned object and then it can be accessed from outside of IIFE. This pattern takes advantage of closures, so the variables/methods defined inside the IIFE are accessible even after the object is returned.

From Addy Osmani's book Learning Javascript Design patterns

The Revealing Module pattern came about as Heilmann was frustrated with the fact that he had to repeat the name of the main object when we wanted to call one public method from another or access public variables. He also disliked the Module pattern’s requirement for having to switch to object literal notation for the things he wished to make public.

The result of his efforts was an updated pattern where we would simply define all of our functions and variables in the private scope and return an anonymous object with pointers to the private functionality we wished to reveal as public.

Advantages:

  1. Encapsulation. The code inside the IIFE is encapsulated from outside world
  2. Clean, organized and reusable code
  3. Privacy. It allows to create private variables/methods. The private variables/methods cannot be touched from outside of the IIFE.

Disadvantages:

  1. If a private function refers to a public function, that public function can't be overridden

Further Reading:

  1. https://en.wikipedia.org/wiki/Module_pattern
  2. https://carldanley.com/js-revealing-module-pattern/
  3. How to use Revealing module pattern in JavaScript

EDIT

From comment from @Mike

It's of note that it's common to create an object (eg, var me = {};) and then declare the would-be public members on it (me.func1 = function() { /* ... */ };), returning that object at the end (return me;). This avoids the repetition that we see in the return statement of OP's code (where all the public stuff is repeated).

like image 109
Tushar Avatar answered Sep 22 '22 19:09

Tushar


It's a literal object in the return statement. It's like creating an object and then returning it:

var obj = {     func1: func1,     func2: func2,     func3: func3 }; return obj; 

The literal object syntax creates an object and sets its properties, just like:

var obj = new Object(); obj.func1 = func1; obj.func2 = func2; obj.func3 = func3; return obj; 

The purpose of returning the object is to reveal the functions inside the function to the code outside, while creating a scope for private variables that the functions can use.

When not using private variables, the code does the same thing as:

var Test = {   func1: function() {       //do something.....   },   func2: function() {       //do something.....   },   func3: function() {       //do something.....   } }; 

Private variables are declared inside the function scope, and are only reachable by the functions inside it. Example:

var Test = (function () {    var name;    function setName(str) {     name = str;   }    function getName() {     return name;   }    return {       setName: setName,       getName: getName   };  })();  Test.setName("John Doe"); var name = Test.getName(); 
like image 37
Guffa Avatar answered Sep 19 '22 19:09

Guffa