I have a javascript object similar to:
this.obj = {
key1 : {
key2: {
key3: 'value3',
key4: key3 + ' value 4'
}
}
};
this fails as key3 undefined.