我一定是在失去理智。假设我有一个数组数组。我想过滤子数组,最后得到一组过滤后的子数组。假设我的过滤器大于3"。所以
let nested = [[1,2],[3,4],[5,6]]
// [[],[4][5,6]]
在一些下划线jiggery-pokery失败后,我尝试了常规循环。
for (var i = 0; i < nested.length; i++){
for (var j = 0; j < nested[i].length; j++){
if (nested[i][j] <= 3){
(nested[i]).splice(j, 1)
}
}
}
但这只会从第一个子阵列中删除1。我本以为splice会改变底层数组,并且会更新长度来解释它,但可能不是吗?或者其他可能完全出错。可能很明显;没有看到它。任何花哨或简单的帮助都会感激不尽。
答案 0 :(得分:4)
这可能会这样做;
var nested = [[1,2],[3,4],[5,6]],
limit = 3,
result = nested.map(a => a.filter(e => e > limit ));
console.log(result);
&#13;
答案 1 :(得分:3)
如果您没有ES6:
var nested = [[1,2],[3,4],[5,6]];
nested.map(
function(x) {
return x.filter(
function(y){
return y > 3
}
)
}
)