DEV Community

Discussion on: 7 Useful Javascript Tips

Collapse
 
tovvaar profile image
˗ˏˋトバーˎˊ˗

On the last one perhaps there is a formatting error, since comment is affecting the const declaration:

//Map and catch for promises 
//And just console.log them 
const all = await Promise.all(
    promiseArray.map(p => p.catch(console.log))
)
Collapse
 
__victorchan profile image
Victor Chan

Thanks, I'll give it an edit!