I have an array of objects like this:
myArray = [ {label: \"a\", value: \"100\"}, {label: \"b\", value: \"101\"}, {label: \"c\", value: \"102\"} ...
Just check if the value you're filtering on is in your array
myArrayFiltered = myArray.filter(function(v){ return ["102", "103"].indexOf(v.value) > -1; });