05-JS Fundamentals | Function in Javascript

Different types of function in Javascript

πŸ“… Jan 10, 2024

Function in Javascript

Different Way of Defining Function

  • Function Declaration / Function Statement
    • Hoisted to top, can be declared anywhere in the file (i.e. also after it’s used)
  • Function Expression
    • Hoisted to top but not initialized/defined, can’t be declared anywhere in the file (i.e. not after it’s used)
  • Arrow function
  • IIFEs
Read More β†’