I create an object like this:
[
Object {
Username = "James", Password = "12345", Email = "[email protected]"
},
Object {
Username = "Auric", Password = "12345", Email = "[email protected]"
}
]
What is the best way to retrieve a list of the property names? i.e. I would like to end up with some variable 'keys' such that:
Object = ["[email protected]", "[email protected]"]
Thanks.
[]Array.{}Object