Posted by: Pdfprep
Post Date: January 23, 2021
Refer to the code below:
Const resolveAfterMilliseconds = (ms) => Promise.resolve (
setTimeout (( => console.log(ms), ms ));
Const aPromise = await resolveAfterMilliseconds(500);
Const bPromise = await resolveAfterMilliseconds(500);
Await aPromise, wait bPromise;
What is the result of running line 05?
A . aPromise and bPromise run sequentially.
B . Neither aPromise or bPromise runs.
C . aPromise and bPromise run in parallel.
D . Only aPromise runs.
Answer: B