要使用Lodash來(lái)篩選數(shù)組,你可以使用它提供的函數(shù)來(lái)實(shí)現(xiàn)。下面是一些常用的數(shù)組篩選函數(shù):
const arr = [1, 2, 3, 4, 5];
const filteredArr = _.filter(arr, (num) => num % 2 === 0);
console.log(filteredArr); // 輸出 [2, 4]
const arr = [1, 2, 3, 4, 5];
const foundElement = _.find(arr, (num) => num % 2 === 0);
console.log(foundElement); // 輸出 2
const arr = [1, 2, 3, 4, 5];
const foundIndex = _.findIndex(arr, (num) => num % 2 === 0);
console.log(foundIndex); // 輸出 1
const arr = [1, 2, 3, 4, 5];
const rejectedArr = _.reject(arr, (num) => num % 2 === 0);
console.log(rejectedArr); // 輸出 [1, 3, 5]
這些只是Lodash提供的一些常用的數(shù)組篩選函數(shù)。你可以根據(jù)實(shí)際需求選擇適合的函數(shù)來(lái)篩選數(shù)組。