Node.js - Error Handling Patterns
You want to run two async functions in parallel and handle errors separately. Which pattern is best?
async function runTasks() {
// Which code below correctly handles errors for both tasks?
}