javascripttypescriptobjectserenity-platform

Can't access nested object property TS


I'm trying to access the propertys of this object however my console is returning undefined..?

I've tried every work around, any suggestions?

enter image description here

enter image description here


Solution

  • You almost certainly want

    for (let s of targetItems)
    

    instead of

    for (let s in targetItems)