Filters the array
whereNull([1, 2, 2, 3, null, undefined, 5]); // [null, undefined]
whereNull([{count:1}, {count:null}, {foo:15}], "count"); // [{count:null},{foo:15}]
Optional
Generated using TypeDoc
Filters the array
Example
Example