I have this line of code:
let contentResps = responses.filter(resp => resp);
and I cannot figure out what it is doing. Responses is an array of Promises.
This only keep thruthy values. For instance, if any of the responses is undefined, then it will only keep defined responses.