-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17-promises.html
75 lines (45 loc) · 1.45 KB
/
17-promises.html
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
<!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>introduction to promises</title>
</head>
<body>
<script>
// the solution of the callback is promiswes. we use promises in javaScript because it will done our work easy
let promises1 = new Promise((resolve, reject)=>{
setTimeout(() => {
//console.log("hello this is alert promises resolve");
resolve(true)
}, 5000);
})
promises1.then(alert)
let promises2 = new Promise((resolve, reject) => {
setTimeout(() => {
// console.log("this is reject promise")
reject(new Error("i am an error"))
}, 5000)
});
// promises1.then(function value(v1){
// console.log(v1)
// })
//also write with this
// to get the value
promises1.then((value) => {
console.log(value);
})
// to catch the error
promises2.catch((error) => {
console.log("occure some error")
})
//also you can give both at a time
promises2.then((value)=>{
console.log(value);
},(error)=>{
console.log("some error occure ")
});
</script>
</body>
</html>