• Filters the array

    Example

    whereNull([1, 2, 2, 3, null, undefined, 5]); // [null, undefined]
    

    Example

    whereNull([{count:1}, {count:null}, {foo:15}], "count"); // [{count:null},{foo:15}]
    

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • Optional field: string

    Returns T[]

Generated using TypeDoc