-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsRevision.js
170 lines (141 loc) · 5.56 KB
/
jsRevision.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
// // // let count = 0;
// // // const counter = setInterval(function(){
// // // count++;
// // // console.log(count)
// // // },1000)
// // // setTimeout(function(){
// // // clearInterval(counter)
// // // },11*1000)
// // // setInterval(function(){
// // // const myDate = new Date();
// // // const hours = myDate.getHours()
// // // const minutes = myDate.getMinutes()
// // // const seconds = myDate.getSeconds()
// // // console.log(`Time=> ${hours}:${minutes}:${seconds} `)
// // // },1000)
// // ////how to create custom callback other than setTimeout, setInterval, clearInterval, fs.readfile, fetch,
// // // function sayHello(){
// // // console.log("SayHello 1")
// // // function sayhello2(){
// // // console.log("SayHello 2")
// // // }
// // // sayhello2();
// // // }
// // // sayHello()
// // // const fs = require('fs')
// // // fs.readFile("jsRevision.js","utf-8", function(err, data){
// // // // console.log(data+"Rishabh Mittal 22104089")
// // // const newData = "/n Rishabh Mittal 22104089"
// // // fs.writeFile("./jsRevision.js", newData, "utf-8", (err)=>{
// // // if (err){
// // // console.log("Can't overwrite, error:"+ err)
// // // }
// // // })
// // // console.log(data)
// // // } )
// // // let count = 0;
// // // function counter (){
// // // count++;
// // // console.log(count)
// // // }
// // // setTimeout(counter,10000)//callback another way to write instead of writing with in the function;
// // // createOrderApi(cart, function(orderId){
// // // proceedPayment();
// // // })//when createOrderApi is done then proceedPayment will be called. this is callback function approach, Problem here is inversion of control.
// // // const promise = createOrderApi(cart)//this fucntion is returing promise
// // // promise.then(function(orderId){
// // // proceedPayment();
// // // })//this is promise approach, this is better than callback approach.
// // // const userGithub = fetch("https://api.github.com/users/therishabhmittal-05")
// // // userGithub.then(function(data){
// // // console.log(data)
// // // })//.then function in promise is used to handle the response of promise.
// // // fetch("https://api.github.com/users/therishabhmittal-05").then(function(response){
// // // console.log(response)
// // // })
// // // // createOrderApi(cart)
// // // // .then(function(orderId){
// // // // return proceedToPayment();
// // // // }).then(function(paymentInf0){
// // // // return balanceAmount(currBalance)
// // // // })
// // // // createorder(cart).then(function(orderId){
// // // // return proceedToPayment().then(function(paymentInfo){
// // // // return balanceAmount(currBalance).then(function(balance){
// // // // console.log("Order is placed")
// // // // });
// // // // });
// // // // });
// // // //Now i know one thing if a function is returning promise then using .then() function we handle the respomnse of that promise.
// // // //Syntactically saying .then(function(response){----}) is used to handle the promise returned by the function.(response is the data from the promise)
// // // setTimeout(name ,5000)
// // // function name (){
// // // const firstName = new Promise(function(resolve,reject){
// // // resolve({name: "Rishabh Mittal",
// // // age: 20,})
// // // })
// // // console.log(firstName)
// // // return firstName;
// // // }
// // // // console.log(name())
// // // name().then(function(data){
// // // console.log(data)
// // // })
// // const orderID = 1234;
// // function whichWillReturnPr(){
// // const promise = new Promise((resolve, reject)=>{
// // resolve(logCheck(orderID))
// // })
// // console.log("1")
// // return promise;
// // }
// // console.log("0")
// // whichWillReturnPr().then(function(data){
// // console.log("4")
// // console.log(data)
// // })
// // console.log("2")
// // function logCheck(orderID){
// // console.log(orderID)
// // console.log("3")
// // return orderID;
// // }
// const cart = ['phone', 'laptop', 'watch']
// // const createOrder = createOrderApi(cart)//returns an orderID
// // createOrderApi(cart).then(function(response){
// // // proceedToPayment(orderID)
// // console.log(response)
// // })
// createOrderApi(cart).catch(function(err){
// console.log(err)
// } )
// /////Upto this was consumer part of promise, now we will see producer part of promise.
// function createOrderApi(cart){
// const pr = new Promise(function(resolve,reject){
// //Api call to create order
// //Api call for orderValidation =>
// if(!validation(cart)){
// // const err = new Error("Validation failed");
// reject("Error: Validation Failed");
// }
// else {
// const orderID = 123444555;
// resolve(orderID)
// }
// })
// function validation(cart){
// return false;
// }
// return pr;//this pr will either has reject(err)=> "Validation Failed" or resolve(orderID)=> "OrderID as number" for output.
// //In this i can add various thing if reject a new failed order page will be shown or reolved then proceed to payment will be called.
// }
const dataPromise = new Promise(function(resolve, reject){
resolve(["Rishabh Mittal 22104089"]) })
async function getData(){
console.log(dataPromise)
return dataPromise;
// console.log(dataPromise)
}
getData().then(function(data){
console.log(typeof data)
})