The main difference between a function expression and a function declaration is the function _________.

  • Hoisting
  • Scope
  • Expression
  • Name
The main difference between a function expression and a function declaration is the function name. Function declarations have a name, which is used to call the function, while function expressions may or may not have a name, depending on whether they are named or anonymous functions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *