When higher-order functions are used for asynchronous programming, they often involve __________ to handle future results.

  • Callbacks
  • Closures
  • Promises
  • Observables
Promises are a type of higher-order function used for handling asynchronous operations in JavaScript. They provide a clean and structured way to work with asynchronous code by representing a value that might be available now, in the future, or never.
Add your answer
Loading...

Leave a comment

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