Just dipping my toes into the world of JS and JSON. I've got this JSON data:
{
"month":"november",
"category":"coffee",
"price":50,
"name":"Pike Place Roast Brewed Coffee Verismo Pods",
"flavor":"flavored",
"count":5,
"roast":"medium",
"type":"regular"
},
{
"month":"august",
"category":"coffee",
"price":40,
"name":"Starbucks VIA Ready Brew French Roast",
"flavor":"flavored",
"count":548,
"roast":"blonde",
"type":"decaffinated"
},
{
"month":"november",
"category":"coffee",
"price":50,
"name":"Starbucks Caffé Verona Blend, Whole Bean",
"flavor":"flavored",
"count":5,
"roast":"medium",
"type":"regular"
},
{
"month":"asia-pacific",
"category":"coffee",
"price":20,
"name":"Starbucks Caffè Verona K-Cup Pods",
"flavor":"flavored",
"count":3,
"roast":"dark",
"type":"regular"
},
{
"month":"august",
"category":"coffee",
"price":40,
"name":"Milk Verismo Pods",
"flavor":"flavored",
"count":233,
"roast":"blonde",
"type":"decaffinated"
},
{
"month":"november",
"category":"coffee",
"price":50,
"name":"Starbucks VIA Ready Brew Decaf Italian Roast",
"flavor":"flavored",
"count":5,
"roast":"medium",
"type":"regular"
},
{
"month":"august",
"category":"coffee",
"price":40,
"name":"Guatemala Antigua Espresso Verismo Pods",
"flavor":"flavored",
"count":587,
"roast":"blonde",
"type":"decaffinated"
}
I'm curious how to extract all the data related to a specific month, like November, using Javascript. Any tips on how to achieve this would be greatly appreciated. Thanks.