This commit is contained in:
2025-10-08 06:58:27 +07:00
commit 8468f024c7
27 changed files with 6081 additions and 0 deletions

15
promise_ontap.js Normal file
View File

@@ -0,0 +1,15 @@
async function test() {
try {
let promiseApiResult = await new Promise((res, rej) => {
rej(1)
})
console.log("promiseApiResult", promiseApiResult)
} catch (er) {
}
}
test()