目標
文章的排序,排除量詞等不必要的詞彙,再來排序,例如原本資料為
1 | const bands = ['The Plot in You', 'The Devil Wears Prada', 'Pierce the Veil', 'Norma Jean', 'The Bled', 'Say Anything', 'The Midway State', 'We Came as Romans', 'Counterparts', 'Oh, Sleeper', 'A Skylit Drive', 'Anywhere But Here', 'An Old Dog']; |
要排除 a 、 an 、 the 這些詞彙後,排序列表
處理步驟
步驟 1.
利用 sort 先行排序
步驟 2.
因為是文字排序所以自動採用 unicode 編碼排序,但是要排除 a 、 an 、 the 這些詞彙,所以建立 strip 方法來排除
步驟 3.
排序結果使用 arrow function ,並將結果呈現到 HTML 上
筆記與備註事項
此篇為應用 sort 的部分,應用的方法都是之前的主題學習過的內容,算是進階應用的部分。
參考資料
- JavaScript 30 day
- 作者 Github Wes Bos
- Js 30 day 中文指南
- 瓜瓜的 JS 30
- 我的 JS 30 練習Github