I have a json object:
{"images":{"2":"building.jpg","3":"campus.jpg","4":"grads.jpg","5":"trio.jpg"},"videos":[]}
I'm using this code to get the number of images:
var imgCount = Object.keys(obj.images).length;
But how do I get the values of those images (building.jpg, etc.)? I confess I'm having a hard time with this.