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