I have an array of objects like this:
myArray = [
{label: "a",
value: "100"},
{label: "b",
value: "101"},
{label: "c",
value: "102"}
...
I want to filter it like this:
myArrayFiltered = myArray.filter(function(v){
return v["value"] == "101" || v["value"] == "102"});
Which will return
myArrayFiltered = [
{label: "b",
value: "101"},
{label: "c",
value: "102"}]
in this example but I want to do the filter with an array of values. How can I do that ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…