find()
方法會返回知足條件的第一個元素,若是沒有,則返回undefined後端
var arr = [1, 2, 3, 4, 5]; var above5 = arr.find(ele => ele > 5); var below5 = arr.find(ele => ele < 5); console.log(above5); // undefined console.log(below5); // 1
實際開發中,常常會要求實現搜索功能。好比,根據姓名/用戶id等能夠標明用戶惟一身份的字段值,搜索出對應的某一條用戶數據等等。prototype
一般的實現思路是,先遍歷全部數據,而後根據用戶輸入的惟一的字段值,找出用戶想要的那一條數據,而後展現在頁面上。code
假設根據用戶名查找某一個用戶
let input_user_name = "tom" // 假設用戶在輸入框中輸入的用戶名 const users = [ // 假設後端返回的全部數據 { id: 123, name: "dave", age: 23 }, { id: 456, name: "chris", age: 22 }, { id: 789, name: "bob", age: 21 }, { id: 101, name: "tom", age: 25 }, { id: 102, name: "tim", age: 20 } ]
我以前的寫法是:ip
let userSearched users.forEach(user => { if (user.name === input_user_name) { userSearched = user } })
在瞭解了ES6中的Array.prototype.find()
以後,我重寫了以前的代碼:開發
let userSearched = users.find(user => user.name === input_user_name)
只需一行代碼搞定!文檔