Function isArrayEquals

  • Parameters

    • firstArr: unknown[]

      The first array to compare.

    • secondArr: unknown[]

      The second array to compare.

    • Optional compareFunc: ((a, b) => boolean)
        • (a, b): boolean
        • Parameters

          • a: any
          • b: any

          Returns boolean

    Returns boolean

    Returns true if the arrays are equal, otherwise false.

    Deprecated

    v6.0.0 is deprecated

    Checks if two arrays are equal.