2019-04-22
描述
返回数组中第 n * i
个元素。
提示
- 使用
Array.prototype.filter()
创建一个新数组 - 新数组中包含原数组中第
n * i
个元素
代码
const everyNth = (arr, nth) => arr.filter((e, i) => i % nth === nth - 1);
示例
获取数组中第 2 * i
个元素:
everyNth([1, 2, 3, 4, 5, 6], 2); // [ 2, 4, 6 ]