frida-node icon indicating copy to clipboard operation
frida-node copied to clipboard

a unknown question

Open ddqweqrqwrwqr opened this issue 9 months ago • 0 comments

console.log("Hello World!")

function sleep(time) { return new Promise(resolve =>{ setTimeout(resolve, time) }) }

async function run() { console.log("Hello World!2") await sleep(1000) console.log("Hello World!3") }

run()


results Hello World! Hello World!1

the third console.log cannot run! help me

ddqweqrqwrwqr avatar Nov 26 '23 03:11 ddqweqrqwrwqr