如何使用 javascript 计算嵌套数组中的数组数

how to count number of arrays in nested array using javascript

我正在做一个if语句,我需要判断嵌套数组是否只有一个数组。 removeByNames 中的对象是我需要计算的。我正在使用 angularJS 和 linq.js。哪个更有效率。

[{
    "style":"smooth",
    "color":"blue",
    "data":[[600,40000]],
    "name":"Subject Property",
    "removeByNames":[["Product1"]],
    "$$hashKey":"object:30"
}]

您可以使用数组访问和点表示法。

var jsoN = [{"style":"smooth","color":"blue","data":[[600,40000]],"name":"Subject Property","removeByNames":[["Product1"]],"$$hashKey":"object:30"}];

jsoN[0].removeByNames.length;
/* or */
jsoN[0]['removeByNames'].length;