I have two objects :
objOne: {fields1 :'value1', field2:'value2'}
objTwo: {value1: 'text1', value2:'text2'}
I want to call objTwo using `objOne. For example if I want fetch 'text1' I would like to write something like that :
objTwo.objOne.field1
I want to know if this is possible and how to do it if so.