반응형

JSON형태 객체 접근 :  
변수명[위치]['키'] = test[0]['A']

 

const testV1 = [{A:1,B:2,C:3},{A:1,B:2,C:3}];

testV1[0]['A']

=> 1나옴.
반응형

+ Recent posts