I have an object that looks like this:
[
{'el': 123},
{'el': 234},
{'el': 345}
]
I would like to convert this to an array that holds just the values, and remove the extra 'el' inside:
var myArray = [ 123, 234, 345];
Is there any easy way to do this, without using JSON.parse or other JSON friendly methods? Old fashioned Javascript is what I'm looking for.