我有以下 javascript 数组:
var groupedDataSet1 = [{year: "0-1k", value1: Math.floor(Math.random()), value2: Math.floor(Math.random()), value3: Math.floor(Math.random())},
{year: "1-2k", value1: Math.floor(Math.random()), value2: Math.floor(Math.random()), value3: Math.floor(Math.random())},
{year: "2-3k", value1: Math.floor(Math.random()), value2: Math.floor(Math.random()), value3: Math.floor(Math.random())},
{year: "3-4k", value1: Math.floor(Math.random()), value2: Math.floor(Math.random()), value3: Math.floor(Math.random())},
{year: "4-5k", value1: Math.floor(Math.random()), value2: Math.floor(Math.random()), value3: Math.floor(Math.random())}];
我想以编程方式知道每个条目中有多少个键/值对。
有没有办法知道 groupedDataSet 包含键 year、value1、value2 和 value3 而另一个 javascript 数组可能只包含 year、value1 和 value2?
执行 groupedDataSet[0].length 不起作用。
谢谢。