I have a piece of code that looks like this:
func().then(function (result){
var a = func1(result);
func2(a).then(function(result1){
////
}
}
As you can see func
returns a promise, and in then part we call another func1
which also returns a promise. Is it possible to chain the promise returned from func2
with the promise of then, and somehow get ride of the nested functions in the second then.