I have the following JS structure:
var master = {
one: 'this is text',
two: [
{
child: '#mydiv'
child_two: ''
},
{
child: '#mydiv'
child_two: ''
},
]
};
Is it possible to make child_two
be equal to the child
value?
Something like this: master.two.child
= '#mydiv'