-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMore_promise_object.js
306 lines (256 loc) · 6.76 KB
/
More_promise_object.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
console.log("start");
async function solve() {
const prom = await new Promise((resolve, reject) =>
setTimeout(() => {
resolve(console.log("Promise resolved"));
}, 1000)
);
console.log("Testing");
}
solve();
console.log("end");
// ********************************************************
console.log("start");
async function fetchData() {
const response = await fetch("https://api.example.com/data");
const data = await response.json();
console.log(data);
}
fetchData();
console.log("end");
// ********************************************************
console.log("start");
function importantAction(username) {
setTimeout(() => {
return `Subscribe to ${username}`;
}, 1000);
}
const message = importantAction("Parishi", function () {
console.log(message);
});
console.log("stop");
console.log("start");
function importantAction(username) {
setTimeout(() => {
return `Subscribe to ${username}`;
}, 1000);
}
// ********************************************************
const sub = new Promise((resolve, reject) => {
setTimeout(() => {
const result = true;
if (result) {
resolve("Subscribe to parishi");
} else {
reject(new Error("I am learinig aboput promise chaining 1"));
}
}, 1000);
});
const sub1 = new Promise((resolve, reject) => {
setTimeout(() => {
const result = true;
if (result) {
resolve("Subscribe to parishi pt2");
} else {
reject(new Error("I am learinig aboput promise chaining 2"));
}
}, 1000);
});
sub
.then(() => {
console.log("Sub promise resolved");
})
.then(() => {
sub1;
console.log("sub1 is also resolved");
})
.catch((err) => {
console.error(err);
});
console.log("stop");
//Promise combinator
Promise.race([sub, sub1]).then((res) => console.log(res));
const result = async () => {
try {
const message1 = await sub();
const message2 = await sub1();
console.log({ message1, message2 });
} catch (error) {
console.log("Promises failed");
}
};
function getData(id) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(`Data for ID ${id}`);
}, Math.random() * 2000);
});
}
async function fetchDataWithPromiseAll() {
const ids = [1, 2, 3];
try {
const promises = ids.map((id) => getData(id));
const results = await Promise.all(promises);
} catch (error) {
console.error(error);
}
}
fetchDataWithPromiseAll();
console.log("start");
const promise1 = new Promise((resolve, reject) => {
console.log(1);
resolve(2);
console.log(3);
});
promise1.then((res) => {
console.log(res);
});
console.log("end");
// Solve Promise recursively
function promiseRecurse(funcPromises) {
if (funcPromises.length === 0) return;
const currPromise = funcPromises.shift();
currPromise.then((res) => console.log(res)).catch((err) => console.log(err));
promiseRecurse(funcPromises);
}
const examplePromise = new PromisePolyfill((resolve, reject) => {
setTimeout(() => {
resolve(2);
}, 1000);
});
examplePromise
.then((res) => {
console.log(res);
})
.catch((err) => console.error(err));
const a = [
{ language: "JavaScript" },
{ language: "JavaScript" },
{ language: "TypeScript" },
{ language: "C++" },
];
const b = [
{ language: "JavaScript", count: 2 },
{ language: "C++", count: 1 },
{ language: "TypeScript", count: 1 },
];
function solve(a) {
const res = [];
for (let i = 0; i < a.length; i++) {
let index = res.findIndex((item) => item.index === res[i].index);
if (index !== -1) {
res[i].count++;
} else {
res.push({ language: a[i].language, count: 1 });
}
}
}
const a1 = { key1: 2, key2: 1, key3: 7 };
const b2 = [{ key1: 2 }, { key2: 1 }, { key3: 7 }];
function solve1(a1) {
let res = [];
for (let i in a1) {
res.push({ [i.key]: [i.value] });
}
return res;
}
console.log(solve1(a1));
const aob = [
{ framework: "React.JS", website: "Paypal" },
{ framework: "React.JS", website: "Tesla" },
{ framework: "Angular", website: "Google" },
{ framework: "Vue.JS", website: "Vue" },
{ framework: "JavaScript", website: "inblack67" },
];
output: -[
{ victim: "React.JS", count: 2 },
{ victim: "Angular", count: 1 },
{ victim: "Vue.JS", count: 1 },
{ victim: "JavaScript", count: 1 },
];
function find(obj, res) {
for (let i = 0; i < res.length; i++) {
if (res[i] == obj) return true;
}
return false;
}
function aobo(aob) {
const res = [];
for (let i = 0; i < aob.length; i++) {
if (find(aob[i], res)) {
res[i].count++;
} else {
res.push({ framework: aob.framework, count: 1 });
}
}
return res;
}
function foo() {
let x = (y = 0);
x++;
y++;
return x;
}
console.log(foo(), typeof x, typeof y);
class Rectangle {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.calcArea();
}
calcArea() {
return this.height * this.width;
}
}
const square = new Rectangle(20, 30);
console.log(square.area);
function User(name, age) {
this.name = name;
this.age = age;
this.getProfile = function () {
return () => {
console.log(this.constructor.name);
console.log("I'm " + this.name + ", " + this.age + " yrs old");
};
};
}
let user = new User("John", 25);
let profile = user.getProfile();
profile();
// The getProfile method returns a regular function. When you call profile(), the context of this inside the returned function is the global object (Window in the browser, global in Node.js), not the User instance. This is because regular functions create their own this context, which is determined by how they are called. Since the returned function is called directly (as profile()), its this refers to the global object.
function User(name, age) {
this.name = name;
this.age = age;
this.getProfile = function () {
// Outer function context
console.log(this.constructor.name); // User
return function () {
// Inner function context
console.log(this.constructor.name); // Window
console.log("I'm " + this.name + ", " + this.age + " yrs old");
};
};
}
var user = new User("John", 25);
var profile = user.getProfile();
profile(); //I'm undefined, undefined yrs old
// The getProfile method returns an arrow function. Arrow functions do not bind their own this value but inherit this from the surrounding lexical context. In this case, the surrounding context is the User instance (user). So, when you call profile(), the this inside the arrow function still refers to the User instance, and you get the correct output.
function foo() {
return;
{
message: "Hello World";
}
}
console.log(foo());
// this is a syntax issur , it should be fixed like
function foo() {
return { message: "Hello World" };
}
// OR
function foo() {
return {
message: "Hello World",
};
}