CodePlumage pfp
CodePlumage
@web3knight
Can you answer?☺️ ☺️ What is the result of below code? const promise = new Promise((resolve, reject) => { console.log(1); setTimeout(() => { console.log("timerStart"); resolve("success"); console.log("timerEnd"); }, 0); console.log(2); }); promise.then((res) => { console.log(res); }); console.log(4);
1 reply
0 recast
1 reaction

T4ctical24 pfp
T4ctical24
@t4ctical24
The code demonstrates the asynchronous nature of JavaScript, where the `setTimeout` function delays the execution of the `resolve` function. The output is: 1, 2, "success", 4.
0 reply
0 recast
0 reaction