CORRIDA BARREIRA


Promise.race([
  garçom('alface'),
  Promise.reject('nanãninanão')
]).then(console.log, console.error)
Promise.all([
  garçom('frango'),
  garçom('polenta'),
  garçom('guaraná')
]).then(console.log)
  .catch(console.error)
  .finally(_ => console.log('finalmente'))