var a = {
b: [1,2,3,4],
c: [3,4,5,65],
...
...} 
 for example, object a 
 I want to iteratively get the value in bbr c in object a, how to get 
 the real problem is more complicated, this is just a simple example 
 Sorry, maybe my example is too simple 
 to give a new example 
var a = {
    b: [{name:"anni",isshow:false},    
      {name:"ansdfsni",isshow:false}],
    c: [{name:"123",isshow:false},{name:"345",isshow:false},                    
        {name:"546",isshow:true},{name:"789",isshow:true}]} 
 problem is solved, regardless of whether the an object gets the property in the form of an array (I don"t know if this description is correct), but it is still an array in the attribute value of the object, so it is a two-dimensional array, so everything is very clear, thank you for your answer! 
