-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise 1.js
60 lines (52 loc) · 1.38 KB
/
promise 1.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
let p = new Promise((resolve,reject) => {
setTimeout(() => {
resolve(10);
}, 100);
});
// p.then((result) => {
// console.log(result); // 10
// return result * 2;
// }).then((result) => {
// console.log(result); // 20
// return result *3;
// })
// When you call the then() method multiple times on a promise, it is not promise chaining.
const r = (result) => {
console.log(result);
return result * 2;
};
p.then(r);
p.then(r);
p.then(r).then(r);
// Promise chaining syntax
const getUser = (userId) => {
return new Promise((resolve,reject) => {
console.log("getting the user from the database");
setTimeout(() => {
resolve({
userId: userId,
username: 'admin'
});
}, 1000);
});
}
function getServices(user) {
return new Promise((resolve, reject) => {
console.log(`Get the services of ${user.username} from the API.`);
setTimeout(() => {
resolve(['Email', 'VPN', 'CDN']);
}, 3 * 1000);
});
}
function getServiceCost(services) {
return new Promise((resolve, reject) => {
console.log(`Calculate the service cost of ${services}.`);
setTimeout(() => {
resolve(services.length * 100);
}, 2 * 1000);
});
}
getUser(100)
.then(getServices)
.then(getServiceCost)
.then(console.log);