-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasync.html
More file actions
58 lines (53 loc) · 1.62 KB
/
async.html
File metadata and controls
58 lines (53 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
<script>
// function foo(){
// return new Promise(function(resolve,reject){
// resolve("Some Data");
// })
// }
//This whole foo function we can write as
function creatOrder(){
return new Promise((resolve, reject)=>{
setTimeout(()=>{
resolve("Order created");
},2000);
})
}
function proceedToPayment(){
return new Promise((resolve, reject)=>{
setTimeout(()=>{
// resolve("Order created");
reject("Order created");
},2000);
})
}
async function foo(){
//when you add async keyword in front of regular function
//It automatically return a promise from that function
try{
const orderId=await creatOrder();
//pauses the Execution and waits for the promise to resolve or reject
//After the promise is resolved the function execution continue from the point where it left
await proceedToPayment();
console.log("Last Statement of Async Function");
}
catch(err){
console.log("Error in",err);
}
}
//1. await can only be use inside a async function
//Await keyword makes the function pause the execution and wait for the promise to resolve
foo();
console.log(3);
console.log(4);
</script>