访问Array中的正确元素

时间:2017-06-19 14:09:19

标签: javascript arrays string for-loop console

我正在使用下面的for循环:

console.log(a1); 
 for(var f = 0; f < a1.length; f++){

 b= a1[f];

console.log(b);............

我的控制台告诉我这个:

  Array [ Array[6], Array[8] ] 
  Array [ Object, Object, Object, Object, Object, Object ] 
  Array [ Object, Object, Object, Object, Object, Object, Object, Object]

现在,控制台中的第一个数组行为console.log(a1),其他2个数组为console.log(b)

我想只访问整个第一个console.log(b)数组。 我尝试使用console.log(b [0]),但这只显示了第一个对象,包括它们的2个数组的属性,但是我想在我的控制台上只看到带有6个元素的完整的第一个数组。有人可以帮我解决吗?

1 个答案:

答案 0 :(得分:1)

据我所知,您希望使用第一个对象数组,这是a1的第一个元素,因此您需要循环遍历a1[0],这将为您提供所需的第一个数组:< / p>

for(var f = 0; f < a1[0].length; f++) {
    var b = a1[0][f];
    console.log(b);
    //do stuff here
}