const animals = { "type":"Horse", "color": "brown" };
const chicken = { "name":"Clucker", "age":2, "wingsclipped":true };
const pets = { "names" : ["Fido", "Spot", "Buttercup"], "colors" : ["black", "brown", "purple"]};
const school = { "schoolname" : "UCB J-School", "concentrations" : ["reporting", "writing", "coding"]};
const myDogs = [ { "name":"Rex", "age":1 }, { "name":"Fido", "age":14 }, { "name":"Princess", "age":5 }];
const incidents = [ { "weapon":"gun", "homicide":true, "location": [40.452107, 93.742118] }, { "weapon":"knife", "homicide":true, "location": [52.479748, 62.185657] }, { "weapon":"gun", "homicide":false, "location": [19.646162, 37.295270] }];
const dog = { "name": "Bruno", "type": "bulldog", "fixed": true, "color": "black"};
dog.color
dog["color"]
const cat = { "name" : "Smelly", "type of cat" : "Tabby", "gender" : "male"};
cat["type of cat"]
const the_cat = [ {"name":"Jonesy", "color":"gray"}, {"name":"Smarty", "color":"purple"}, {"name":"Spot", "color":"white"}];
the_cat[1].name
the_cat[1]["name"]
const shootingsData = [ { "weapon" : "gun", "homicide" : false, "location":[40.452107, 93.742118], "order": 1 }, { "weapon" : "knife", "homicide" : true, "location":[52.479748, 62.185657], "order": 2 }, { "weapon" : "vehicle", "homicide" : true, "location":[19.646162, 37.295270], "order": 3 }];
shootingData[2].location[0]
shootingData[2]["location"][0]
const photos = [ {"title":"matter", "url":"http://placehold.it/300x300"}, {"title":"kittens", "url":"http://placekitten.com/300/300/"}, {"title":"Charlie", "url":"http://placesheen.com/300/300/"}];
photos[0]["url"]photos[1]["url"]photos[2]["url"]
projects[2].name
projects[4].photo.little
projects[0].creator.avatar.thumb