We're a place where coders share, stay up-to-date and grow their careers.
Promise hell can't exist, that's why it's so nice!
const call_api = (url) => fetch(url).then(res => res.json()) const heaven = (url) => call_api(url).then(data => console.log(data)) heaven('/api/users') .then(() => heaven('/api/posts')) .then(([{ id }]) => heaven(`/api/posts/reactions?post=${id}`)) .then(({ post: id }) => heaven(`/api/comments?post=${id}`))
See? It's really clean 😃
Promise hell can't exist, that's why it's so nice!
See? It's really clean 😃