Duplicate of: map function for objects (instead of arrays)
How do i map or iterate through an object where the values is another object as such:
[{
    "id":2,
    "name":"Jane Smith",
    "position":"Cook",
    "applied":"02/08/16",
    "experience":4,
    "availability":{
        "M":1,
        "T":1,
        "W":1,
        "Th":1,
        "F":0,
        "S":0,
        "Su":0
    },
    "questions": [{
        "text":"Have you ever been convicted of a felony?",
        "answer":"Yes"
    }]
},
...(2 other objects with the same format)....
]
I need to access the availability object
 
     
     
     
     
    