So I have an array myarr[] of JSON objects in the form: { "a":"", "b":"" }
Are there efficient methods for getting an array of b:
[ myarr[0].b, myarr[1].b, myarr[2].b, ... ]
Or do I have to manually iterate through the myarr to build the array of b?