Refer to the code below:
01 const exec = (item, delay) =>{
02 new Promise(resolve => setTimeout( () => resolve(item), delay)),
03 async function runParallel() {
04 Const (result1, result2, result3) = await Promise.all{
05 [exec ('x', '100') , exec('y', 500), exec('z', '100')]
06 );07 return `parallel is done: $(result1) $(result2)$(result3)`;
08 }}}
Which two statements correctly execute the runParallel () function?
Choose 2 answers
Currently there are no comments in this discussion, be the first to comment!