LoginSignup
1
0

More than 5 years have passed since last update.

object 連想配列の表示方法

Last updated at Posted at 2017-09-02

連想配列の表示方法。
忘れてしまいそうなので、備忘録として記述。

var object2 = {
  'obj1':{'c1':'A','c2':'B','c3':'C'},
  'obj2':{'c1':'A','c2':'B','c3':'C'}
};

console.log(object2.obj1.c1);  //A
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0