To access the id property of the nested myObj you can try this:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
var myObj={Chatting : {a :{ 'id' : 'a'}}};
alert(myObj.Chatting.a.id)
<!-- end snippet -->