What happens when you use the return keyword in a single-line arrow function?

  • The function returns undefined
  • The function returns the value after the arrow
  • The function throws an error
  • The function returns an array
In arrow functions, if the body is a single expression, it is implicitly returned. So, using the return keyword is optional. Option B is correct.
Add your answer
Loading...

Leave a comment

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