How to escape Promise Hell
Ronald Chen
9316
@Ronald In the serialized `demandMoreDonuts` example, how about changing the line:
```
.then(() => greet(‘fred’))
```
to a simpler form:
```
.then(greet(‘fred’))
```
in order to eliminate an unnecessary function wrapper? (This would also make the example consistent to the one with parallel execution.)