Most data structures provided in a standard JavaScript environment aren’t very well suited for persistent use. Arrays have slice and concat methods, which allow us to easily create new arrays without ...
Rewrite the function from the previous exercise without async/await, using plain Promise methods. In this style, using Promise.all will be more convenient than trying to model a loop over the logfiles ...