I have a json array in the below format:
[
{
"id":"01",
"language": "Java",
"edition": "third",
"author": "Herbert Schildt"
},
{
"id":"07",
"language": "C++",
"edition": "second"
"author": "E.Balagurusamy"
}
]
I want a result consisting only the first column from this array in the form:
[ "01", "07" ]
I tried many codes but wouldn't succeed, is there a way to achieve this using jquery.