-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
222 lines (161 loc) · 7.02 KB
/
notes.txt
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
Contents:
1.for of Method
2.for in Method
3.forEach Method
4.Spread operator
5.Rest parameter
*************************************************************************************************************************
1.for of Method
===>Object ல் உள்ள value ஐ access செய்ய for of பயன்படுகிறது.
===>Example:
async function foo() {
try {
const res = await fetch("https://restcountries.com/v3.1/all");
const result = await res.json();
for(let obj of result){
console.log(obj.name.common);
}
} catch (error) {
console.log("error");
}
}
foo();
o/p:
French Polynesia
Saint Martin
Venezuela
Réunion and etc.,,,
===>for(let obj of result){
console.log(obj.name.common);
}
இதுதான் for of method ஆகும்.
let = variables
obj = user defined name (Temporary variable போன்றது.)
of = syntax
result = API உடைய மொத்த result
===>நமக்கு எந்த value தேவைப்படுகிறதோ அதை நேரடியாக call செய்து பெறலாம்.
இதுதான் for of method ஆகும்.
===>பொதுவாக for loop ஐ பயன்படுத்தும் போது length,increment/decrement,[i] போன்றவை எல்லாம் கொடுத்து output ஐ பெறுவோம்.
ஆனால் for of loop ல் நேரடியாக call செய்து பெறலாம்.
===>Example 2:
async function foo() {
try {
const res = await fetch("https://restcountries.com/v3.1/all");
const result = await res.json();
for(const obj of result){
console.log(obj.area);
}
} catch (error) {
console.log("error");
}
}
foo();
o/p:area values display
4167
53
916445 and etc.,
*************************************************************************************************************************
2.for in Method
===>Object ல் உள்ள index ஐ base செய்து work ஆக for in பயன்படுகிறது.
===>கிட்டத்தட்ட for loop ஐ போன்றது ஆகும்.ஆனால் length,increment/decrement போன்றவை எல்லாம் கொடுக்காமல்
index value ஐ மட்டும் கொடுத்து output ஐ print செய்வோம்.
===>Example:
async function foo() {
try {
const res = await fetch("https://restcountries.com/v3.1/all");
const result = await res.json();
for(const index in result){
console.log(result[index].area);
}
} catch (error) {
console.log("error");
}
}
foo();
o/p:area values display
4167
53
916445 and etc.,
*************************************************************************************************************************
3.forEach Method
===>foreach similar to map method.
கிட்டத்தட்ட map method ஐ போன்றது ஆகும்.ஆனால் iterates செய்வதற்கு use பண்ண மாட்டோம்.
===>it is used only for printing purpose.
இது print செய்வதற்கு மட்டுமே பயன்படுத்தப்படுகிறது.
===>It iterates/transforms over each and every element and prints the value
===>Example:
async function foo() {
try {
const res = await fetch("https://restcountries.com/v3.1/all");
const result = await res.json();
result.forEach(element => {
console.log(element.name);
});
} catch (error) {
console.log("error");
}
}
foo();
o/p:
{common: 'French Polynesia', official: 'French Polynesia', nativeName: {…}}
{common: 'Saint Martin', official: 'Saint Martin', nativeName: {…}}
{common: 'Venezuela', official: 'Bolivarian Republic of Venezuela', nativeName: {…}} and etc.,,,
===>Example:Using map method
async function foo() {
try {
const res = await fetch("https://restcountries.com/v3.1/all");
const result = await res.json();
result.map(element => {
console.log(element.name);
});
} catch (error) {
console.log("error");
}
}
foo();
o/p: no changes for forEach output
{common: 'French Polynesia', official: 'French Polynesia', nativeName: {…}}
{common: 'Saint Martin', official: 'Saint Martin', nativeName: {…}}
{common: 'Venezuela', official: 'Bolivarian Republic of Venezuela', nativeName: {…}} and etc.,,,
*************************************************************************************************************************
4.Spread operator
===>Spread operator ன் keyword ... ஆகும்.
===>join() க்கு alternative method தான் Spread operator ஆகும்.
===>இதன் மூலம் Original Array ல் என்ன datatype ஆக உள்ளதோ அது அப்படியே வரும்.
===>converts a string into character array
ஒரு string ஐ character Array ஆக மாற்ற பயன்படுகிறது.
===>இதன் மூலம் Concatenation செய்ய முடியும்.
===>Syntax:
... (3dots only)
===>Example:
var arr = ["Prabha","Karan"]
var arr1 = ["Erode", "9688841727"]
var arr2 = [...arr,...arr1]
console.log(arr2);
o/p:
['Prabha', 'Karan', 'Erode', '9688841727'] length:4
*************************************************************************************************************************
5.Rest parameter
===>To consider remaining values.
Remaining values ஐ consider செய்து வரும்.
===>it used inside the function.
ஒரு function ல் நிறைய parameterகள் உள்ளன.
ஒவ்வொரு parameter ஐயும் தனித்தனியாக call பண்ண வேண்டிய அவசியம் வரும்போது rest parameter பயன்படுத்துகிறோம்.
இதுதான் இதனுடைய advantage ஆகும்.
===>parameter ஐ சரியாக கொடுக்க வேண்டும்.
===>Syntax:
...rest (parameter க்குள் கடைசியாகத்தான் கொடுக்க வேண்டும்)
===>Example:
function foo(a,b,c,...rest){
var sum = 0;
for(var i=0;i<rest.length;i++){ (i<rest.length)
sum=sum+rest[i]
}
return sum;
}
console.log(foo(12,13,14,15,16,17,18,19,20)) //105
a=12
b=13
c=14
rest=15+16+17+18+19+20 = 105
*************************************************************************************************************************