Function differenceWith

  • This method is like difference except that it accepts comparator which is invoked to compare elements of array to values. The order and references of result values are determined by the first array. The comparator is invoked with two arguments: (arrVal, othVal).

    Note: Unlike pullAllWith, this method returns a new array.

    Parameters

    • array: any

      The array to inspect.

    • Rest ...values: any[]

      The values to exclude.

      Rest

    Returns any

    Returns the new array of filtered values.

    Since

    5.9.0

    Example

    const objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]

    differenceWith(objects, [{ 'x': 1, 'y': 2 }], isEqual)
    // => [{ 'x': 2, 'y': 1 }]