如何使用lodash挑选数组
要使用Lodash来挑选数组,你可使用它提供的函数来实现。下面是一些经常使用的数组挑选函数:
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提供的一些经常使用的数组挑选函数。你可以根据实际需求选择合适的函数来挑选数组。
TOP