Input array
Array of strings with distinct elements from input array
Checks if two array of strings are equal (i.e. have all same values).
Example:
let a = ['A', 'B'];
let b = ['B', 'A'];
isStringArrayEqual(a, b); // Returns true
True if both have same values
Generated using TypeDoc
Get's the distinct elements in a array of stings.
Example:
let a = ['a', 'b', 'a']; distinctElements(a); // Returns ['a', 'b']