Series: Run the functions in the tasks collection in series, each one running once the previous function has completed. Waterfall: Runs the tasks array of functions in series, each passing their results to the next in the array. In short: Are equal, but waterfall pass the result of task to the next task.