-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay 11 Promises.js
170 lines (133 loc) · 4.12 KB
/
Day 11 Promises.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
// Activity 1: Understanding Promises
//Task 1: Create a promise that resolves with a message after a 2-second timeout and log the message to the console.
const promise1 = new Promise((resolve) => {
setTimeout(() => {
resolve("Task 1: Promise resolved after 2 seconds");
}, 2000);
});
promise1.then((message) => {
console.log(message);
});
//Task 2: Create a promise that rejects with an error message after a 2-second timeout and handle the error using `.catch()`.
const promise2 = new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error("Task 2: Promise rejected after 2 seconds"));
}, 2000);
});
promise2.catch((error) => {
console.error(error.message);
});
// Activity 2: Chaining Promises
//Task 3: Create a sequence of promises that simulate fetching data from a server. Chain the promises to log messages in a specific order.
const fetchData = (data, delay) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve(data);
}, delay);
});
};
fetchData("Fetching data 1", 1000)
.then((message1) => {
console.log(message1);
return fetchData("Fetching data 2", 1000);
})
.then((message2) => {
console.log(message2);
return fetchData("Fetching data 3", 1000);
})
.then((message3) => {
console.log(message3);
});
//Activity 3: Using Async/Await
//Task 4: Write an async function that waits for a promise to resolve and then logs the resolved value.
const resolveAfter2Seconds = () => {
return new Promise((resolve) => {
setTimeout(() => {
resolve("Task 4: Resolved after 2 seconds");
}, 2000);
});
};
const asyncFunction1 = async () => {
const result = await resolveAfter2Seconds();
console.log(result);
};
asyncFunction1();
//Task 5: Write an async function that handles a rejected promise using try-catch and logs the error message.
const rejectAfter2Seconds = () => {
return new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error("Task 5: Rejected after 2 seconds"));
}, 2000);
});
};
const asyncFunction2 = async () => {
try {
const result = await rejectAfter2Seconds();
console.log(result);
} catch (error) {
console.error(error.message);
}
};
asyncFunction2();
//Activity 4: Fetching Data from an API
//Task 6: Use the `fetch` API to get data from a public API and log the response data to the console using promises.
fetch('https://jsonplaceholder.typicode.com/posts/1')
.then((response) => response.json())
.then((data) => {
console.log('Task 6:', data);
})
.catch((error) => {
console.error('Error:', error);
});
//Task 7: Use the `fetch` API to get data from a public API and log the response data to the console using async/await.
const fetchDataAsync = async () => {
try {
const response = await fetch('https://jsonplaceholder.typicode.com/posts/1');
const data = await response.json();
console.log('Task 7:', data);
} catch (error) {
console.error('Error:', error);
}
};
fetchDataAsync();
// Activity 5: Concurrent Promises
//Task 8: Use `Promise.all` to wait for multiple promises to resolve and then log all their values.
const promiseA = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise A resolved");
}, 1000);
});
const promiseB = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise B resolved");
}, 2000);
});
const promiseC = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise C resolved");
}, 3000);
});
Promise.all([promiseA, promiseB, promiseC])
.then((values) => {
console.log("Task 8:", values);
});
//Task 9: Use `Promise.race` to log the value of the first promise that resolves among multiple promises.
const promiseX = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise X resolved first");
}, 1000);
});
const promiseY = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise Y resolved first");
}, 2000);
});
const promiseZ = new Promise((resolve) => {
setTimeout(() => {
resolve("Promise Z resolved first");
}, 3000);
});
Promise.race([promiseX, promiseY, promiseZ])
.then((value) => {
console.log("Task 9:", value);
});