{
    "John Doe": {
        "Age": 18,
        "Gender": "M"
    },
    "Jane Doe": {
        "Age": 16,
        "Gender": "F"
    },
    "Steve Appleseed":{
        "Age": 21,
        "Gender": "M"
    }
}
Using JavaScript, how do I get an array
var names = ["John Doe", "Jane Doe", "Steve Appleseed"];
If it helps, I'm using Firebase with a JavaScript and jQuery PWA, and I need a list of all the names of objects at a nesting particular level.
 
     
     
     
    