I have an object like below:
var _names = {
'[email protected]' : {
'[email protected]' : {
channel: '1234',
from: 'bob'
}
},
'[email protected]' : {
'[email protected]' : {
channel: '53345',
from: 'dan'
}
}
};
How could i add the following to [email protected]:
'[email protected]' : {
channel: '23233',
from: 'judy'
}
Any ideas?