I have an object with accounts, example:
{
"amount": "822370.71",
"state": "ME"
},
{
"amount": "968817.53",
"state": "FL"
},
{
"amount": "587603.26",
"state": "OH"
},
{
"amount": "657617.83",
"state": "OH"
},
{
"amount": "657617.83",
"state": "FL"
}
Let's say I want to filter out only the objects with the states of "FL" and "OH", how could I use the filter() to do that? Thanks.