In a web application, you want to fetch data from an external API asynchronously. Which JavaScript feature would you use for this purpose?

  • Promise
  • Callback functions
  • Async/Await
  • Observables
To fetch data from an external API asynchronously in a web application using JavaScript, you would use the Async/Await feature. It simplifies the asynchronous code and makes it more readable. The correct option reflects modern asynchronous programming practices.
Add your answer
Loading...

Leave a comment

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