Home >Web Front-end >JS Tutorial >JavaScript Functions: Declarations vs. Expressions – What's the Difference?
When working with JavaScript, understanding the distinction between function expressions and function declarations is crucial. While both can define functions, their loading and execution in the code carry significant differences.
Function Declaration:
Example:
function foo() { return 5; }
Anonymous Function Expression:
Example (Arrow Function):
const foo = () => { return 5; }
Example (Function Syntax):
const foo = function() { return 5; }
Named Function Expression:
Example:
const foo = function foo() { return 5; }
The key difference between declarations and expressions lies in how browsers load them. Function declarations are hoisted to the top of the scope and made available before any code is executed. In contrast, function expressions are loaded only when encountered by the JavaScript interpreter.
If a function expression is called before its definition, it will result in an error since it is not yet loaded into the execution context. Function declarations, on the other hand, can always be called since they are available from the start of the code.
Historically, Safari browsers had an issue with named function expressions. This syntax used to cause an error, but that issue has been resolved in later versions.
The above is the detailed content of JavaScript Functions: Declarations vs. Expressions – What's the Difference?. For more information, please follow other related articles on the PHP Chinese website!