删除数组内部的空数组的问题

时间:2019-11-02 15:59:20

标签: javascript articulate-storyline

我遇到了一个作为初学者javascript编码器的问题。

当我尝试记录count变量(它是一个数组数组)时,这是我的控制台:

enter image description here

我想删除count内的空数组,所以在count日志上方添加了以下代码行,如下所示:

 count = count.filter(e => e.length);
 console.log(count);

我没什么区别,所以我尝试以另一种方式记录count

count = count.filter(e => e.length);
console.log("count: "+ count);

这次我可以看到有线的东西! count带有其他值的日志! (知道这些值,但我不知道它们在第一个日志中的位置以及为什么过滤器不起作用)

enter image description here

请帮助我感到困惑。如何删除count上的空数组?

所需的结果将是:

enter image description here

0 个答案:

没有答案