Which two statements correctly execute the runParallel () function?
Refer to the code below:
01 const exec = (item, delay) =>{
02 newPromise(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 );
7 return `parallel is done: $(result1)$(result2)$(result3)`;
8 }
}
}
Which two statements correctly execute the runParallel () function? Choose 2 answers
A . Async runParallel () .then(data);
B . runParallel (). done(function(data){return data;});
C . runParallel () .then(data);
D . runParallel () .then(function(data)return data
Answer: B,D
Latest JavaScript Developer I Dumps Valid Version with 144 Q&As
Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Subscribe
Login
0 Comments
Inline Feedbacks
View all comments