Hacker News new | ask | show | jobs
by cupofjoakim 13 days ago
Well, nesting is not the only option.

``` thing.doThis() thing.thenDoThat() thing.andFinallyThis()

// or

doThis(thing) thenDoThat(thing) andFinallyThis(thing) ```

1 comments

That’s not equivalent.