Independent work should run together with Promise.all.
Acceptance criteria
- 1.#out should show one two.
Independent work should run together with Promise.all.
function delay(value) { return Promise.resolve(value); } async function run() { const a = await delay("one"); document.querySelector('#out').textContent = a; } run();
Output ready when you are
Press Run to render your code, or Submit to validate your solution.