Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

A function is a code snippet that can be called by other code or by itself, or a variable that refers to the function. When a function is called, arguments are passed to the function as input, and the function can optionally return an output. A function in JavaScript is also an object.

A function name is an identifier declared as part of a function declaration or function expression. The function name's scope depends on whether the function name is a declaration or expression.

Different types of functions

An anonymous function is a function without a function name:

function () {}

A named function is a function with a function name:

function foo() {}

An inner function is a function inside another function (square in this case). An outer function is a function containing a function (addSquares in this case):

function addSquares(a,b) {
   function square(x) {
      return x * x;
   }
   return square(a) + square(b);
}

A recursive function is a function that calls itself. See recursion.

function loop(x) {
   if (x >= 10)
      return;
   loop(x + 1);
}

An Immediately Invoked Function Expressions (IIFE) is a function that is called directly after the function is loaded into the browser’s compiler. The way to identify an IIFE is by locating the extra left and right parenthesis at the end of the function’s declaration.  There are many advantages of this type of function expression, but that is out of the scope of the course.

​function foo() {
 console.log('Hello Foo');
}();


(function foo() {
​ console.log('Hello Foo');
})();


(function food() {
    console.log('Hello Foo');
})();

If you'd like to know more about IIFEs, check out the following page on Wikipedia : Immediately Invoked Function Expression

Learn more

Technical reference

Document Tags and Contributors

 Contributors to this page: MarkerKernel, Porkepix, adesotamn, Andrew_Pfeiffer, hbloomer, klez, fscholz
 Last updated by: MarkerKernel,