tech/webdev magazine

May 27, 2015

Promises and design patterns in AngularJS

Wednesday, May 27, 2015 Teklinks

The traditional way to deal with asynchronous tasks in Javascript are callbacks; call a method, give it a function reference to execute once that method is done. You get the idea. This is pretty neat, but, it has some drawbacks; for one, combining or chaining multiple asynchronous processes is tricky; it either leads to a lot of boilerplate code, or what's known as callback hell (nesting callbacks and calls in each other).

Full article