Sign in
Log inSign up
How exactly Promises solve 'Callback Hell' in JavaScript?

How exactly Promises solve 'Callback Hell' in JavaScript?

Default profile photo
Anonymous
·Feb 29, 2016

I think Promises are just glorified callbacks. Even with promises you need to write .then() functions and wrap your statements in a callback. So, my questions how exactly is this avoiding callback hell?