js數(shù)組方法:用于返回條件為真的數(shù)組的第一個元素的值;
find() 方法為數(shù)組中的每個元素都調(diào)用一次函數(shù)執(zhí)行:
當數(shù)組中的元素在測試條件時返回?true?時, find() 返回符合條件的元素外臂,之后的值不會再調(diào)用執(zhí)行函數(shù)捎琐。
如果沒有符合條件的元素返回 undefined
getters:{getTodoById:(state)=>(id)=>{returnstate.todos.find(todo=>todo.id===id)}}
相當于getToDoById:function(state){
? ? return function(id){
? ? ? ? return state.todos.find(todo=>todo.id===id)
? ?}
}