forked from zero-to-mastery/JS_Fun_Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsynchronous Javascript
More file actions
55 lines (50 loc) · 1.51 KB
/
Asynchronous Javascript
File metadata and controls
55 lines (50 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Asynchronous JavaScript</title>
</head>
<body>
<h1>Asynchronous JavaScript</h1>
<script>
const getIDs = new Promise((resolve, reject) => {
setTimeout(() => {
resolve([523, 883, 432, 974]);
}, 1500);
});
const getRecipe = recID => {
return new Promise((resolve, reject) => {
setTimeout(ID => {
const recipe = {title: 'Fresh tomato pasta', publisher: 'Adam'};
resolve(`${ID}: ${recipe.title}`);
}, 1500, recID);
});
};
const getRelated = publisher => {
return new Promise((resolve, reject) => {
setTimeout(pub => {
const recipe = {title: 'Italian Pizza', publisher: 'Adam'};
resolve(`${pub}: ${recipe.title}`);
}, 1500, publisher);
});
};
getIDs
.then(IDs => {
console.log(IDs);
return getRecipe(IDs[2]);
})
.then(recipe => {
console.log(recipe);
return getRelated('Adam');
})
.then(recipe => {
console.log(recipe);
})
.catch(error => {
console.log('Error!!!!');
});
</script>
</body>
</html>