Function Declarations vs. Function Expressions

What is Function Statement/Declarations in JavaScript?

The function statement declares a function.

A declared function is ?saved for later use?, and will be executed later, when it is invoked (called).

Just as Variable Declarations must start with ?var?, Function Declarations must begin with ?function?.

e.g.

function bar() {

return 3;

}

  • function is only declared here .For using it, it must be invoked using function name. e.g bar();

What is a Function Expression?

A JavaScript function can also be defined using an expression.

A function expression can be stored in a variable:

var x = function (a, b) {return a * b};

After a function expression has been stored in a variable, the variable can be used as a function. Functions stored in variables do not need function names. They are always invoked (called) using the variable name.

Function Expression VS. Function Statement

Example: Function Expression

alert(foo()); // ERROR! foo wasn’t loaded yetvar foo = function() { return 5; }

Example: Function Declaration

alert(foo()); // Alerts 5. Declarations are loaded before any code can run.function foo() { return 5; }

  • Function declarations load before any code is executed while Function expressions load only when the interpreter reaches that line of code.
  • Similar to the var statement, function declarations are hoisted to the top of other code. Function expressions aren?t hoisted, which allows them to retain a copy of the local variables from the scope where they were defined.

Benefits of Function Expressions

There are several different ways that function expressions become more useful than function declarations.

  • As closures
  • As arguments to other functions
  • As Immediately Invoked Function Expressions (IIFE)

Credits : Angus Croll , www.sitepoint.com

14

No Responses

Write a response