async-await tag

1 questions


1 answers
92 views
0
Async/await question!

const makeRequest = async () => { const value1 = await promise1(); const value2 = await promise2(value1);};makeRequest();// // do other worksI think it's a basic question, but I'm leaving a message...


© 2024 OneMinuteCode. All rights reserved.