-
Notifications
You must be signed in to change notification settings - Fork 0
/
array_note.html
283 lines (215 loc) · 6.96 KB
/
array_note.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
object
<script>
//part1-start=============================
//js寫法 方式
// index arr
//const myArr = [1,2,3];
//console.log(myArr);
// index arr方式
//const myArr = ['amy','bob','cat'];
//console.log(myArr);
//for in方式 => get key
//for (const key in myArr) {
// console.log('hello for in');
// console.log(key);
// console.log(myArr[key]);
//}
//for of方式 => get value
//for (const value of myArr) {
// console.log('hello for of');
// console.log(value);
//}
// 關聯式array
//const myObj = {
// 'a' : 'amy',
// 'b' : 'bob',
// 'c' : 'cat',
//};
//console.log(myObj);
// const myObj2 = {
// a: 'amy',
// b: 'bob',
// c: 'cat'
// }
//console.log(myObj);
// for in object
//
//for (const key in myObj) {
// console.log('hello obj for in');
// console.log(key);
// console.log(myObj[key]);
// console.log(myObj['key']);
//}
// for of object
// object 轉iterable 轉array
//let keysObjs = Object.keys(myObj);
//let valueObjs = Object.values(myObj);
//console.log('keysObjs',keysObjs);
//console.log('valueObjs',valueObjs);
//for (const value of valueObjs) {
// console.log('hello obj for of');
// console.log(value);
// console.log(myObj['key']);
//}
// const myArr2 = [
// 'key' : 'value',
// 'key' : 'value',
// 'key' : 'value',
// 'key' : 'value',
// 'key' : 'value',
// ];
//可參考w3school 有提到https://www.w3schools.com/js/js_object_es5.asp
//part1-end=============================
//=======================
//與php的寫法
// <?php
//index array
//$myArr = [1,2,3];
//關聯式array Associative Array
//$myArr = [
// "a" => "amy",
// "b" => "bob",
// "c" => "cat",
// "d" => "dog"
//];
//?>
//=========================
//part2-start=================
//object.keys
//let x = 0;
//let y = 1;
//console.log(x); //都先console.log試看看出來的字串如何
//console.log(y);
//let [a,b] = [3,5];
//console.log(a);
//console.log(b);
// Object.keys
//const obj = {
// a: 'amy',
// b: 'bob',
// c: 'cat',
//}
//console.log(object.keys(obj)); // get object key => ['a','b','c']
//console.log(Object.values(obj)); // get object value => ['amy','bob','cat']
//console.log(Object.entries(obj));
// get object value => [['a','amy']['b','bob']['c','cat']]
//let entries = object.entries(obj);
//const mapArr = entriesArr.map(value => {
// console.log(value);
//let[key,value] = values;
// return v;
//});
//map
// map
// array map
// console.log('entriesArr',entriesArr);
//const mapArr = entriesArr.map(value => {
// console.log(value);
//let [k,v] = value; //['a','amy']
// return k; // mapArr = ['a','b','c']
// return v; // mapArr = ['amy','bob','cat']
//});
// console.log('mapArr',mapArr);
// 小練習
// 我要顯示map array ['a=>amy','b=>bob','c=>cat']
// foreach
//entriesArr.forEach(value => {
// console.log('hello foreach');
// console.log(value); // [key,value]
// console.log(value[0]); //0 key
// console.log(value[1]); //1 value
//});
//part2-end=================
//part3-start=================
//reduce方法=>全部的array的加總 total + value
// reduce 我要算這個array 100 - 全部array
//let num = [0, 1, 2, 3, 5, 7].reduce(function (total, value) {
// console.log('reduce');
// console.log(total);
// console.log(value); D
// return total - value;
// }, 100);
// 100 total 初始直
// reduce -
// total 減少 跟 增加
// console.log(num); // 18
//part3-end=================
//part4-start=================
//一開始會用這種方式寫,但後面一旦資料多時,不適合用此方法寫
// let student1 = {
// };
// let student2 = {
// 'id': 2,
// 'name': 'bob',
// 'tel': '0922-222-222'
// };
// [{},{}]
//適合寫成以下方式
let students = [
{
'id': 1,
'name': 'amy',
'tel': '0911-111-111'
},
{
'id': 2,
'name': 'bob',
'tel': '0922-222-222'
},
];
//可先用console.log寫看看:
// console.log(student1);
// console.log(student2);
//console.log(students);
//console.log(students[0]);
//console.log(students[1]);
//練習用一個foreach 顯示 _每個obj資料
// obj.id or obj['id'] 兩種表達都可以
students.forEach(value => {
console.log(value);
document.write(value.id);
document.write("<br>");
document.write(value['name']);
document.write("<br>");
document.write(value['tel']);
document.write("<hr>");
});
//============================================
//但如果是php的寫法就是 註解掉PHP寫法(START)
//foreach($myArr as key => $value){
// print_r($key);
// print_r($value);
//}
//PHP多維陣列(Array)
//$students = [
// 'id' => 1,
// 'name' => 'Jenny',
// 'tel' => '0912-345-678',
//]
//[
// 'id' => 2,
// 'name' => 'Bob',
// 'tel' => '0922-345-678',
//]
//PHP_function寫法
// function
//function myFunction()
//{
//print_r('hello myfunction');
//}
//註解PHP寫法(THE END)
//=============================================
//part4-end====================
//有關於part5在array061501.html
</script>
</body>
</html>