Filters the array
where([{count:1}, {count:20}, {count:15}], "count", 15); // [{count:15}]
Filters the array
where([1, 2, 2, 3, 4, 4, 5], "<", 4); // [1,2,2,3]
Filters the array
where([{count:1}, {count:20}, {count:15}], "count", ">=", 15); // [{count:20},{count:15}]
Generated using TypeDoc
Filters the array
Example