This is the data:
I tried this way =>
this.result = res?.permissions?.action_findings.store;
Can you give me a proper answer?
This is the data:
I tried this way =>
this.result = res?.permissions?.action_findings.store;
Can you give me a proper answer?
If you want to use ?
operator with bracket []
you should write:
res?.permissions?.["action_findings.store"]