前言
JS 30 是由加拿大的全端工程師 Wes Bos 免費提供的 JavaScript 簡單應用課程,課程主打 No Frameworks、No Compilers、No Libraries、No Boilerplate 在30天的30部教學影片裡,建立30個JavaScript的有趣小東西。
另外,Wes Bos 也很無私地在 Github 上公開了所有 JS 30 課程的程式碼,有興趣的話可以去 fork 或下載。
本日目標
練習一些 Array 常用的方法,包括 filter()、sort()、map()、reduce()。
解析程式碼
JS 部分
前七個練習題要使用的資料如下:
1 | /*JS*/ |
1. Filter the list of inventors for those who were born in the 1500’s
Array.prototype.filter()
filter()
方法會透過指定的函式運算,決定保留哪些資料並形成一個新的陣列。
在 filter 裡 return true 代表要保留該筆資料,除此之外的資料都會被捨棄,我們沒必要再寫 else 去 return false。
以下我們透過 filter() 過濾"出生於16世紀的發明家"
1 | /*JS*/ |
更簡潔的寫法:
console.table(),可以將 Array 以表格的形式呈現出來。
1 | /*JS*/ |
2. Give us an array of the inventors first and last names
Array.prototype.map()
map()
方法會建立一個和原陣列長度相同的陣列,其內容為原陣列的每一個元素經由指定的函式運算後所回傳的結果之集合。
以下我們使用 map() 方法,將發明家的 first name 和 last name 結合在一起,形成一個新的陣列。
1 | /*JS*/ |
3. Sort the inventors by birthdate, oldest to youngest
Array.prototype.sort()
sort()
方法會對一個陣列中的所有元素進行排序,並回傳此陣列,預設是以字串的 Unicode 編碼進行排序。
我們也可以指定一個 compareFunction ,用自訂的排序規則為陣列進行排序。
compareFunction(a, b),回傳值小於0時,a 會被排在 b 的前面,反之若回傳值大於0時,a 會被排在 b 的後面。
以下我們使用 sort(),將較早出生的發明家排在前面的位置。
1 | const ordered = inventors.sort(function(a,b){ |
更簡潔的寫法:
1 | const ordered = inventors.sort((a,b) => a.year > b.year ? 1 : -1); |
4. How many years did all the inventors live all together?
Array.prototype.reduce()
reduce()
方法將一個累加器(accumulator)及陣列中每項元素傳入函式中進行運算,將陣列化為單一的值。
其中一種用法如下:
1 | Array.reduce((accumulator,currentValue) => { |
1 | const totalYears = inventors.reduce((total,inventor)=>{ |
5. Sort the inventors by years lived
以下,我們將這些發明家依照壽命的長短由大到小進行排序。
透過 passed - year,我們可以很簡單的算出每一位發明家的壽命。
1 | const oldest = inventors.sort(function(a,b){ |
6. Create a list of Boulevards in Paris that contain ‘de’ anywhere in the name
這題我們需要自行到 https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris 右鍵檢查進入 console 進行解題。
Node.textContent
Node.textContent
可以取得節點或其後代的文字內容。
Array.prototype.includes()
includes()
方法會判斷陣列是否包含特定的元素,並以此來回傳 true
或 false
。
Array.from()
Array.from()
方法會從類陣列(array-like,例如: NodeList)或是可迭代(iterable)物件建立一個新的 Array
實體。
首先,我們取得包覆所有巴黎大道名稱的最上層 div 標籤(.mw-category)。接著,取得在其之下的所有連結(a)。最後,使用 map() 方法以所有連結的內部文字組成新陣列並透過 filter() 過濾出包含(include)'de’的所有大道名稱。
1 | const category = document.querySelector('.mw-category'); |
7. Sort the people alphabetically by last name
String.prototype.split()
split()
方法可以使用指定的分隔字元(separator)將一個String
分割成串列。
以下,用,
(逗號和空格)作為分隔字元將 first name、last name 切開並放入一個陣列中,接下來就可以依照 aLast、bLast 的 Unicode 進行 last name 的排序(由小到大)。
1 | const alpha = people.sort(function(lastOne,firstOne){ |
另一種寫法:
1 | const alpha = people.sort((lastOne,firstOne) => { |
8. Sum up the instances of each of these
資料內容:
1 | const data = ['car', 'car', 'truck', 'truck', 'bike', 'walk', 'car', 'van', 'bike', 'walk', 'car', 'van', 'car', 'truck' ]; |
一開始賦予累加器(obj)的初始值(initial value)為空物件({}),因為最初所有的 item 都不存在於 obj 中,所以透過 if 判斷當 obj[item] 不存在時,就建立 obj[item] 並賦予初始值0。其後就可正常將 item 持續累加至正確的交通工具分類中(obj[item]++)。
1 | const transportation = data.reduce(function(obj,item){ |