How do arrow functions behave differently from traditional functions in terms of hoisting?

  • Arrow functions are not hoisted
  • Arrow functions are hoisted with their entire body
  • Arrow functions are hoisted but only the function declaration
  • Arrow functions are hoisted with their parameters
Arrow functions are not hoisted, unlike traditional functions. They must be defined before they are used. Option A is correct.
Add your answer
Loading...

Leave a comment

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