Javascript – Why must I add a "then" after "finally" in order to chain promises?
Per this fiddle, if I try to call a second promise function from the .finally() block of the first promise, the second promise resolves but the resolve value is "undefined". However, if I call the second promise function in a…