I want to know is there a difference between following two?
aPromiseObj.then(fn1).then(fn2).catch(fn3);
aPromiseObj.then(fn1); aPromiseObj.then(fn2); aPromiseObj.catch(fn3);
Will the work flow changed?
ps: I am in angular environment, though I would like to think this in a broader term.