how can I filter this JSON by the array of areas, within that array? I need to display in my html only the items that have a certain area. In the case below, I must display only the area_one
[
{
"ID":789,
"title":"Title Page",
"image_desktop":"image21.jpg",
"image_mobile":"image234.jpg",
"link":"#",
"areas":[
"area_one"
]
},
{
"ID":789,
"title":"Title Page three",
"image_desktop":"image21.jpg",
"image_mobile":"image234.jpg",
"link":"#",
"areas":[
"area_one"
]
},
{
"ID":765,
"title":"Title Page 2",
"image_desktop":"image231.jpg",
"image_mobile":"image421.jpg",
"link":"#\/link",
"areas":[
"area_two"
]
}
]
Array.prototype.includes()