假如有函数execter,该函数接受一个promise数组,该函数的作用是并行执行promise数组里面的每个promise并返回执行结果。(如果出错返回null)
execter([
Promise.resolve(1),
Promise.reject(2),
Promise.resolve(3)
]).then(res=>{
console.log(res) //[1,null,3]
})
网上搜了好多方法都是串行实现的,那么并行怎么实现呢(不用Promise.all、async、await)
Promise.all呗。。