-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise.js
420 lines (278 loc) · 8.44 KB
/
promise.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
// console.log("welcome to promises")
//sync example
// setTimeout(() => {
// console.log(1)
// },)
// console.log(2)
// console.log(3)
// console.log(4)
// const marks = 82
// if (marks >= 43) {
// console.log("ji app pass ho gaye ho!")
// if (marks >= 80) {
// console.log("accha hain par app aur accha kar sakte the/ho")
// if (marks >= 90) {
// console.log("sabas beta")
// } else {
// console.log("A grade")
// }
// } else {
// console.log("scope of improvement")
// }
// }
// else {
// console.log("koi na fail to fail firse try kro")
// }
// const h1 = document.querySelector("h1")
// const myNameFunc=() => {
// console.log("yadnyesh")
// }
// h1.addEventListener("click", myNameFunc)
// console.log(h1.innerHTML)
// function food(dish) {
// h1.innerHTML=`today i eat ${dish} and it was dilicious`
// }
// function dinner(dish, food) {
// food(dish)
// }
// dinner("Panner kofta",food)
// function dataCenter(id,dc) {
// console.log("fetching data ...")
// setTimeout(() => {
// console.log("data is", id)
// if (dc) {
// dc(id)
// }
// },3000)
// }
// dataCenter(1, () => {
// console.log("fetching data 2...")
// dataCenter(2, () => {
// console.log("fetching data 3...")
// dataCenter(3, () => {
// console.log("fetching data 4...")
// dataCenter(4)
// })
// })
// })
// const api=fetch("https://api.github.com/users/yadnyeshkhotre")
// console.log(api)
//promises
// new Promise((resolve, reject) => {
// resolve(123)
// })
// new Promise((resolve, reject) => {
// setTimeout(() => {
// console.log("promise being resoved")
// resolve("success")
// },3000)
// })
// function food(dish) {
// console.log("mumma khane me kya hain?")
// setTimeout(() => { console.log("tu haat mu dho le main khana lagati hu!") }, 2000)
// return new Promise((resolve, reject) => {
// setTimeout(() => {
// if (dish == "panner kofta") {
// // console.log("promise being resoved")
// resolve(`i want to eat the ${dish}`)
// } else {
// reject("nai khana tumhari bhindi")
// }
// },8000)
// }).then((res) => {
// console.log("main khana kha lunga agar bhini na ho to")
// }).catch((rej) => {
// console.log("agar bhindi hain to main nai khane wala")
// })
// }
// food("panner kofta")
// const dataCenter1 = function(id) {
// console.log("data is fetching...")
// return new Promise((resolve, reject) => {
// setTimeout(() => {
// reject(id)
// }, 3000)
// })
// }
// const dataCenter2 = function(id) {
// console.log("data is fetching...")
// return new Promise((resolve, reject) => {
// setTimeout(() => {
// reject(id)
// }, 3000)
// })
// }
// dataCenter1(1).then((res) => {
// console.log(`data fetched is ${res}`)
// }).catch((err) => { console.log("your req is rejected")})
function dataCenter(id) {
return new Promise((resolve, reject) => {
console.log("data is fetching...")
setTimeout(() => {
if (id >= 200 && id <= 300) {
resolve(`data fetced is ${id}`)
} else {
reject(`Your req for the id ${id} is invalid`)
}
},4000)
})
}
dataCenter(209).then((response) => {
console.log(response)
dataCenter(249).then((response) => {
console.log(response)
dataCenter(270).then((response) => { console.log(response)})
}).catch((err) => { console.log(err) })
}).catch((err) => {
console.log(err)
})
// dataCenter(2)
// dataCenter(3)
// async function greetings(name) {
// console.log(`good evening ${name}`)
// }
// function api(stockName) {
// return new Promise((resolve, reject) => {
// setTimeout(() => {
// if (stockName==="tata steel") {
// console.log(`stock price of ${stockName} is 425`)
// resolve(200)
// } else {
// console.log(`stock price of ${stockName} is not avalible`)
// reject(404)
// }
// },3000)
// })
// }
// async function fetchStockPrice() {
// console.log("fetching stock price..")
// await api("adani airlines")
// console.log("successfully fetched stock price")
// }
// function dataCenter(id) {
// return new Promise((resolve, reject) => {
// console.log("fetching data...")
// setTimeout(() => {
// if (id >= 200 && id <= 300) {
// console.log(`data fetced is ${id}`)
// resolve(`data fetced is ${id}`)
// } else {
// reject(`Your req for the id ${id} is invalid`)
// }
// },2000)
// })
// };
// async function dataHandler() {
// await dataCenter(212)
// await dataCenter(234)
// await dataCenter(250)
// console.log("fetched all data")
// }
//async-await
// async function greetings(name) {
// console.log("Good Evening",name)
// }
// function api(price) {
// return new Promise((resolve,reject) => {
// setTimeout(()=>{console.log(`stock price ${price}`)
// resolve(201)},2000)
// })
// }
// (async function fetchStockPrice() {
// console.log("fetching stock price..");
// await api(200)
// console.log("fetching stock price..");
// await api(300)
// console.log("fetching done");
// })();
// function dataCenter(id) {
// return new Promise((resolve, reject) => {
// setTimeout(() => {
// if (id > 200&& id < 300) {
// console.log(`your data is ${id}`)
// resolve(201)
// } else {
// console.log(`could not find the requested data i.e ${id}`)
// reject(404)
// }
// }, 2000)
// })
// }
// (async function dataHandler()
// {
// await dataCenter(201)
// await dataCenter(202)
// try { await dataCenter(666) } catch(error) { console.log(error)}
// await dataCenter(299)
// })()
//api:
// const promise=fetch("https://api.github.com/users/yadnyeshkhotre")
const url = "https://cat-fact.herokuapp.com/facts";
// const fetchData = (async() => {
// console.log("Fetching data...")
// let response = await fetch(url);
// console.log(response)
// })()
// let h1 = document.querySelector("h1");
// (async function fetchData() {
// console.log("Fetching data...")
// let data = await fetch(url)
// console.log(data)
// data = await data.json();
// h1.innerHTML= data[0].text
// }
// )()
// fetch(url).then((res) => {
// return res.json()
// }).then((data) => { console.log(data) })
// .catch((err) => { console.log(err) })
console.log("Fetching data...");
h1=document.querySelector("h1");
btn = document.querySelector("button")
// const promise = fetch(url)
// console.log(promise)
// console.log("yadnyesh khotre")
// async function getData() {
// const promise = await fetch(url)
// const jsObjPromise = await promise.json()
// h1.innerHTML=jsObjPromise[parseInt(Math.random()*5)].text
// // console.log([parseInt(Math.random()*5)])
// }
// btn.addEventListener('click', getData)
// console.log(Math.random())
// (function getData() {
// setTimeout(()=>{})
// fetch(url).then((res) => {
// const dataInJsObj = res.json()
// console.log(dataInJsObj)
// })
// })()
// function fetchData() {
// fetch(url).then((res) => {
// return res.json();
// }).then((jsonData) => {
// // console.log(jsonData)
// h1.innerHTML = jsonData[parseInt(Math.random() * 5)].text
// })
// }
// btn.addEventListener('click', fetchData)
// fetch(url).then((res) => {
// if (res.ok) {
// console.log("succ")
// } else {
// console.log("err");
// console.log(res);
// }
// })
// const promise = fetch(url);
// // console.log(promise)
// // if (promise.ok) {
// console.log("success")
// console.log(promise)
// // } else {
// // throw new Error(404)
// // }
// console.log(fetch("https://cat-fact.herokuapp.com/facts"))
// fetch("https://cat-fact.herokuapp.com/facts")
// .then(res => res.json())
// .then(data=>console.log(data))