I have array of keys:
var keys = ['key1', 'key2', 'key3'];
How can I create such object in a simplest way?
var object = { 'key1' : { 'key2' : {'key3' : 'value' }}}
|
I have array of keys:
How can I create such object in a simplest way?
|
||||
|
|
|
You could make use of the fact that JavaScript stores references for
|
||||
|
|
|
How about this...
I don't particularly like using recursive functions but this seems to lend itself to your requirement. |
|||
|
|