Function in Javascript
Different Way of Defining Function
- Function Declaration / Function Statement
- Hoisted to top,
can be declared anywherein the file (i.e. also after it’s used)
- Hoisted to top,
- Function Expression
- Hoisted to top but not initialized/defined,
can’t be declared anywherein the file (i.e. not after it’s used)
- Hoisted to top but not initialized/defined,
- Arrow function
- IIFEs