Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 623 Bytes

what_are_asynchronous_thunks.md

File metadata and controls

19 lines (12 loc) · 623 Bytes

What are asynchronous thunks?

Asynchronous thunks are functions that return a function, which performs asynchronous operations. This allows you to delay the execution of a function, making it useful in scenarios such as API calls or working with promises.

Example:

const fetchData = (url) => (dispatch) => {
  fetch(url)
    .then(response => response.json())
    .then(data => dispatch(data));
};

Tags: advanced, JavaScript, Functional Programming