-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday89.js
182 lines (166 loc) · 3.85 KB
/
day89.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/** @format */
function resolveAfter2Seconds() {
return new Promise((resolve) => {
setTimeout(() => {
resolve('resolved');
}, 2000);
});
}
async function asyncCall() {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
// expected output: "resolved"
}
asyncCall();
//Async with a function expression in JavaScript
function resolveAfter2Seconds() {
return new Promise((resolve) => {
setTimeout(() => {
resolve('resolved');
}, 2000);
});
}
let asyncCall = async function () {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
// expected output: "resolved"
};
console.log('first');
asyncCall();
console.log('second');
//Async with an arrow function in JavaScript
function resolveAfter2Seconds() {
return new Promise((resolve) => {
setTimeout(() => {
resolve('resolved');
}, 2000);
});
}
let asyncCall = async () => {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
// expected output: "resolved"
};
console.log('first');
asyncCall();
console.log('second');
//JavaScript Async with class methods
function resolveAfter2Seconds() {
return new Promise((resolve) => {
setTimeout(() => {
resolve('resolved');
}, 2000);
});
}
class Greeter {
async asyncCall() {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
// expected output: "resolved"
}
}
let gtr = new Greeter();
console.log('first');
gtr.asyncCall();
console.log('second');
///JavaScript Async Await Error handling
function resolveAfter2Seconds(value) {
return new Promise((resolve, reject) => {
if (value === undefined) {
reject(new Error('invalide value argument'));
}
setTimeout(() => {
resolve(`resolve: ${value}`);
}, 2000);
});
}
async function asyncCall() {
try {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
} catch (error) {
console.log(`caught by try/catch: ${error} `);
}
}
asyncCall();
//Chaining Promises with try/catch
function resolveAfter2Seconds(value) {
return new Promise((resolve, reject) => {
if (value === undefined) {
reject(new Error('invalide value argument'));
}
setTimeout(() => {
resolve(`resolve: ${value}`);
}, 2000);
});
}
async function asyncCall() {
try {
console.log('calling');
const result1 = await resolveAfter2Seconds(1);
const result = await resolveAfter2Seconds();
console.log(result);
} catch (error) {
console.log(`caught by try/catch: ${error} `);
}
}
asyncCall();
//Catch() method
function resolveAfter2Seconds(value) {
return new Promise((resolve, reject) => {
if (value === undefined) {
reject(new Error('invalide value argument'));
}
setTimeout(() => {
resolve(`resolve: ${value}`);
}, 2000);
});
}
async function asyncCall() {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
}
asyncCall().catch((error) => console.log(`caught by .catch: ${error} `));
//Unhandled rejected by missing the catch() method
function resolveAfter2Seconds(value) {
return new Promise((resolve, reject) => {
if (value === undefined) {
reject('invalide value argument');
}
setTimeout(() => {
resolve(`resolve: ${value}`);
}, 2000);
});
}
async function asyncCall() {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
}
asyncCall();
//Async/Await works well with Promise.all() method in JavaScript
function resolveAfter2Seconds(value) {
return new Promise((resolve, reject) => {
if (value === undefined) {
reject('invalide value argument');
}
setTimeout(() => {
resolve(`resolve: ${value}`);
}, 2000);
});
}
async function asyncCall() {
// wait for the array of results
let result = await Promise.all([
resolveAfter2Seconds(10),
resolveAfter2Seconds(12),
]);
console.log(result);
}
asyncCall();