JavaScript - Functions
JavaScript - Functions
Introduction
JavaScript Functions
JavaScript Functions
Function
Create a function
Once you write a function Javascript creates a space in memory to save the function
Function Return
When JavaScript reaches a return statement, the function will stop executing.
If the function was invoked from a statement, JavaScript will "return" to execute the code
Functions often compute a return value. The return value is "returned" back to the
"caller":
JavaScript Functions
Function Return
You can display your value in many ways eg on console, saving it to a variable etc
JavaScript Functions
Function Return
Running a function without the return value, the console will display “undefined”
JavaScript Functions
Multiple Return
Function Return
Why Functions?
To have a function accept an argument you need to add a parameter inside the
Inside your function you can use your parameter just like a variable
JavaScript Functions
When running the function you pass information, also called passing an argument to the
function
JavaScript Functions
When calling a function, you're able to pass multiple arguments to the function; each
argument gets stored in a separate parameter and used as a discrete variable within the
function.
JavaScript Functions
Variable Scope
Variable Scope
Function Expression:
- Function without a name after the function keyword making it an anonymous function
The name of the function is the variable name. The statement ends with a semicolon
JavaScript Functions
Function Expression:
- The main difference between a function expression and a function declaration is the
functions.
- Function expressions in JavaScript are not hoisted, unlike function declarations. You can't
- It runs only when the JavaScript engine reaches the line of code.
JavaScript Functions
Function Declaration:
- Each time when a function is called, it returns the value specified by the last executed
- Function declarations in JavaScript are hoisted to the top of the enclosing function or
global scope.
Arrow Functions
Arrow Functions:
JavaScript Functions
- Default function parameters allow named parameters to be initialized with default values
Why Functions?
You can reuse code: Define the code once, and use it many times.
You can use the same code many times with different arguments, to produce different
results.
JavaScript Functions
Why Functions?
Accessing a function without the parenthesis () will return the function object instead
Why Functions?