新手村04 - Array Cardio Day 1
04 - Array Cardio Day 1
俗話說的好,一天一蘋果,醫生遠離我
一天一 JS,What the f*ck JavaScript?
small steps every day - 記錄著新手村日記
完成目標
Javascript基本的Array方法運用:
運用高階函式的三大支柱:map、filter、reduce 處理
inventors
、people
陣列每一題會指定一個 Array Method,透過 console.log / console.table(不支援IE喔!)來解題
小試身手一題
index_START.html
1 |
|
JS
console.table(data [, columns])
data:必須是 Array || Hash 、 columns:一個包含列的名稱和 Array
試著在 console 中玩玩看這個範例:
1
console.table(["apples", "oranges", "bananas"]);
陣列裡面包含物件的範例:
1
2
3
4
5
6
7
8
9
10function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
var john = new Person("John", "Smith");
var jane = new Person("Jane", "Doe");
var emily = new Person("Emily", "Jones");
console.table([john, jane, emily]);
JS - step by step
從 inventors 的變數中透過
filter
找出出生在15世紀的人:- filter:篩選抽出符合條件的保留下來,成為新的一個陣列,不會影響到原始資料(回傳是True或False)
Array.prototype.filter():https://ubin.io/NV9EDk1
2
3
4let fifteen = inventors.filter(function(inventor){
return inventor.year >= 1500 && inventor.year < 1600
})
console.table(fifteen)
- filter:篩選抽出符合條件的保留下來,成為新的一個陣列,不會影響到原始資料(回傳是True或False)
從 inventors 的變數中透過
map
合併 inventors’ first and last names:- map:一樣產生一個新陣列,新陣列會紀錄回傳新的內容
Array.prototype.map():https://ubin.io/cdqWhm1
2
3
4let fullnames = inventors.map(function(inventor){
return inventor.first + ' ' + inventor.last
})
console.table(fullnames)
- map:一樣產生一個新陣列,新陣列會紀錄回傳新的內容
從 inventors 的變數中透過
sort
排序year
欄位由小至大:- sort:對一個陣列的所有元素進行排序,並回傳此陣列
Array.prototype.sort():https://ubin.io/62RcBV1
2
3
4
5let ordered = inventors.sort(function(a, b){
return a.year > b.year ? 1 : -1
// compareFunction(a, b) 的回傳值若小於 0,即 a 排在 b 前面,反之
})
console.table(ordered)
- sort:對一個陣列的所有元素進行排序,並回傳此陣列
從 inventors 的變數中透過
reduce
算出每個人各活了多久:- reduce:累加器 total 及陣列中每項元素(由左至右)傳入回呼函式並將陣列化為單一值
Array.prototype.reduce():https://ubin.io/Rgsbh11
2
3
4
5
6
7
8
9
10
11
12
13let totalYears = inventors.reduce(function(total,inventor){
return total + (inventor.passed - inventor.year)
}, 0) // 初始值
console.log(totalYears)
```
5. 從 inventors 的變數中透過 `sort` 排序活得長至短:
- 結合上方的 `sort` 與 `reduce` 中計算活多久的算式
```javascript
let oldest = inventors.sort(function(a, b) {
return (a.passed - a.year) > (b.passed - b.year) ? -1 : 1
})
console.table(oldest)
- reduce:累加器 total 及陣列中每項元素(由左至右)傳入回呼函式並將陣列化為單一值
去連結網站尋找 名字裡面有包含 ‘de’ 的姓名:
- 至連結打開 console 執行
- 透過
querySelectorAll
抓到的值不是陣列所以沒有map
,必須依靠Array.from
來轉成陣列1
2
3
4
5let category = document.querySelector('.mw-category')
let links = Array.from(category.querySelectorAll('a'))
let de = links
.map(link => link.textContent)
.filter(streetName => streetName.includes('de'))
從 people 的變數中透過
split
切開姓名並用sort
排序活得長至短:- Split:用於把一個一串分割成一個個字串組
String.prototype.split():https://ubin.io/wgKJ421
2
3
4
5
6let alphabetically = people.sort(function(a,b){
let [alast, afirst] = a.split(', ')
let [blast, bfirst] = b.split(', ')
return alast > blast ? 1 : -1
})
console.table(alphabetically)
- Split:用於把一個一串分割成一個個字串組
紀錄每個 data 中的物件共出現幾次:
- 如果沒有這個物件,必須設為一、有的話每次讀到要加一
1
2
3
4
5
6let transportation = data.reduce(function(obj,content){
if(!obj[content]) obj[content] = 1
else obj[content] += 1
return obj
},{})
console.table(transportation)
同類型題目小試身手:
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
27Array.prototype.inspect = function() {
console.log(this)
return this
}
let students = [
{name: "John Doe", age: 24},
{name: "Mary Lee", age: 17},
{name: "Bill Doe", age: 2},
{name: "Ash Lee", age: 38},
{name: "Ryu Doe", age: 18},
]
let result =
students.filter(({age}) => age >= 18)
.map(({name}) => name.split(' ')[1])
.inspect()
.reduce((accu, name) => {
if (accu[name]) {
accu[name] = accu[name] + 1
} else {
accu[name] = 1
}
return accu
}, {})
console.log(result)就大功告成啦!
- 如果沒有這個物件,必須設為一、有的話每次讀到要加一
JS - Final
1 |
|
本次範例程式碼原作者來源:https://reurl.cc/9zZGYv