i have this JSON Object, and i wanna access to this > object.foda.forta.id or name.. in JAVASCRIPT thanks
note: this json it's created by xml2js.Parser()
 {
 "object": {
    "foda": [
      {
        "forta": [
          {
            "id": [
              "1"
            ],
            "name": [
              "dasdghjg"
            ]
          },
          {
            "id": [
              "2"
            ],
            "name": [
              "jj"
            ]
          },
          {
            "id": [
              "3"
            ],
            "name": [
              "gjhjg"
            ]
          }
        ]
      }
    ]
  }
}
 
     
    