-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromis.js
110 lines (91 loc) · 2.66 KB
/
promis.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
// const promiseOne = new Promise(function(resolve, reject){
// //Do an async task
// // DB calls, cryptography, network
// setTimeout(function(){
// console.log('Async task is compelete');
// resolve()
// }, 1000)
// })
// promiseOne.then(function(){
// console.log("Promise consumed");
// })
// new Promise(function(resolve, reject){
// setTimeout(function(){
// console.log("Async task 2");
// resolve()
// }, 1000)
// }).then(function(){
// console.log("Async 2 resolved");
// })
// const promiseThree = new Promise(function(resolve, reject){
// setTimeout(function(){
// resolve({username: "Chai", email: "[email protected]"})
// }, 1000)
// })
// promiseThree.then(function(user){
// console.log(user);
// })
// const promiseFour = new Promise(function(resolve, reject){
// setTimeout(function(){
// let error = true
// if (!error) {
// resolve({username: "hitesh", password: "123"})
// } else {
// reject('ERROR: Something went wrong')
// }
// }, 1000)
// })
// promiseFour
// .then((user) => {
// console.log(user);
// return user.username
// }).then((username) => {
// console.log(username);
// }).catch(function(error){
// console.log(error);
// }).finally(() => console.log("The promise is either resolved or rejected"))
// const promiseFive = new Promise(function(resolve, reject){
// setTimeout(function(){
// let error = true
// if (!error) {
// resolve({username: "javascript", password: "123"})
// } else {
// reject('ERROR: JS went wrong')
// }
// }, 1000)
// });
// async function consumePromiseFive(){
// try {
// const response = await promiseFive
// console.log(response);
// } catch (error) {
// console.log(error);
// }
// }
// consumePromiseFive()
// // async function getAllUsers(){
// // try {
// // const response = await fetch('https://jsonplaceholder.typicode.com/users')
// // const data = await response.json()
// // console.log(data);
// // } catch (error) {
// // console.log("E: ", error);
// // }
// // }
// //getAllUsers()
// fetch('https://api.github.com/users/hiteshchoudhary')
// .then((response) => {
// return response.json()
// })
// .then((data) => {
// console.log(data);
// })
// .catch((error) => console.log(error))
// // promise.all
// // yes this is also available, kuch reading aap b kro.
const promisne =new Promise(function(resolve,reject)
{
setTimeout(fucntion(){
console.log("Async task is compelete");
},1000)
})