-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexamples.js
More file actions
188 lines (128 loc) · 3.37 KB
/
examples.js
File metadata and controls
188 lines (128 loc) · 3.37 KB
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
// How to use prototype for Array.
const arr = [1, 2, 3, 4, 5];
function addValue(arr, x) {
let array = [];
arr.forEach(element => {
array.push(element + x);
});
return array;
}
console.log(addValue(arr, 5));
Array.prototype.addValue = function(x) {
return arr.map(function(i) {
return i + x;
});
}
console.log(arr.addValue(5));
// How to use closure.
function getFullName(secondName) {
return function(firstName, middleName) {
return `Fullname: ${firstName} ${secondName} ${middleName}`;
}
}
const fullName = getFullName("Second");
console.log(fullName("One", "Two"));
console.log(fullName("Three", "Four"));
// How to use setTimeout.
console.log("First");
function someFunc() {
console.log("Second");
}
setTimeout(someFunc, 0);
console.log("Third");
// How to use Promise.all.
const sleep = ms => {
return new Promise(resolve => {
setTimeout(() => resolve(), ms);
});
}
Promise.all([sleep(1000), sleep(2000), sleep(3000)])
.then(() => console.log("Complete all!"));
Promise.race([sleep(1000), sleep(2000), sleep(3000)])
.then(() => console.log("Complete race!"));
// How to use Promise form API.
function getData(url, data) {
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.onload = function() {
if (xhr.status === 200) {
let json = JSON.stringify(xhr.response);
resolve(json);
}
reject(xhr.response);
}
xhr.onerror = function() {
reject(error);
}
xhr.send();
})
}
getData("http://jsonplaceholder.typicode.com/posts")
.then(data => console.log(data))
.catch(error => console.error(error));
// How to use class on components.
class Component {
constructor(selector) {
this.element = document.querySelector(selector);
}
hide() {
this.element.style.display = "none";
}
show() {
this.element.style.display = "block";
}
}
class GreenBox extends Component {
constructor(options) {
super(options.selector);
this.element.style.width = options.sizeWidth + "px";
this.element.style.height = options.sizeHeight + "px";
this.element.style.background = options.color;
}
}
const greenBox = {
selector: "#box",
sizeWidth: 200,
sizeHeight: 100,
color: "green"
}
const box = new GreenBox(greenBox);
const redCircle = {
selector: "#circle",
sizeWidth: 100,
sizeHeight: 100,
borderRadius: "50%",
color: "red"
}
class RedCircle extends GreenBox {
constructor(options) {
super(options);
this.element.style.borderRadius = options.borderRadius;
}
}
const circle = new RedCircle(redCircle);
// How to use generator.
function* simpleGenerator() {
yield console.log("One..");
console.log("Two...");
yield console.log("Three..");
}
const generator = simpleGenerator();
generator.next();
generator.next();
// How to use WeekMap.
const cache = new WeekMap();
function cacheData(data) {
if (!cache.has(data)) {
cache.set(data, Date.now());
}
return cache.get(data);
}
let dataOne = { prop1: 1 }
let dataTwo = { prop2: 2 }
cacheData(dataOne);
cacheData(dataTwo);
dataOne = null;
console.log(cache.has(dataOne));
console.log(cache.has(dataTwo));