Hacker News new | ask | show | jobs
by barbegal 2966 days ago
Promises in javascript have become quite popular. Unfortunately, they're not understood very well so they aren't being used much in areas where they can improve the performance of javascript applications and instead are being used to reduce nested callbacks.
2 comments

There's nothing wrong with using promises to reduce nested callbacks.
Really? At my company, promises have long since won the day. Now I'm trying to get people on async/await, which gets you like 90% of the way to the simplicity of synchronous code.