I have the JS-object, that in Chrome's console looks as folllow:
data: Object
comparisonType: "IN"
dateValue: ""
numericalValue: 0
screeningCriterionId: "-4"
screeningField.displayName: "Prop1"
screeningField.fieldName: "Prop2"
screeningField.groupName: "Prop3"
screeningField.type: "MULTI"
value: null
And I need to read the screeningField.displayName: "Prop1" from this object , but
trying to execute in console this myObject.screeningField.displayName I'm getting the error:
TypeError: Cannot read property 'displayName' of undefined
How to solve my problem ?
myObject['screeningField.displayName']screeningFieldisundefined.screeningFielddoesn't exist, the only other option with that object structure would be that the dot is included in the key name?