Function minus

  • Find the set of differences of multiple arrays that belong to A but not to B/C/D... of the elements of

    Type Parameters

    • T = unknown

    Parameters

    • ...args: T[][]

      arguments

    Returns T[]

    • new array
    minus([1, 2], [2, '33'], [2, 4]) // [1]
    

    2.2.1