The Difference Between Function Expression and Function Declaration in JavaScript

The Difference Between Function Expression and Function Declaration in JavaScript

Ferenc Almasi β€’ πŸ”„ 2023 April 19 β€’ πŸ“– 1 min read

Function expressions and declarations have two major differences. One is that for function expressions, you are assigning the function to a variable. In a function declaration, you don't:

// Function expression
// Will throw a TypeError
console.log(func());
var func = function() { return 5; }

// Function declaration
// Will run without a problem, because it is hoisted
console.log(func());
function func() { return 5; }
functions.js
Copied to clipboard!

The biggest difference however is that expressions are not hoisted. If you call the function before it was initialized, you will get a type error:

Type error being thrown for function expression

Whichever you choose to use throughout your code, make sure you stay consistent to avoid unexpected behaviors.

Function expression vs declaration in JavaScript
If you would like to see more Webtips, follow @flowforfrank

50 JavaScript Interview Questions
Looking to improve your skills? Check out our interactive course to master JavaScript from start to finish.
Master JavaScript

Resources:

Did you find this page helpful?
πŸ“š More Webtips
Frontend Course Dashboard
Master the Art of Frontend
  • check Unlimited access to hundred of tutorials
  • check Access to exclusive interactive lessons
  • check Remove ads to learn without distractions
Become a Pro

Recommended