...
subSet(setToMatch, setToCheck)
Argument | Type | Description |
---|---|---|
setToMatch | Array | The set of values to match. |
setToCheck | Array | The set of values to check. |
Examples
subSet(["A","B"],["D","B","A","B"])
Returns True.
subSet(["A","B"],["D","B","E","B"])
Returns False because "A" is not in the second set.
subSet(["A","A","B"],["D","B","A","B"])
Returns True. both "A" members in the input array are related to the single "A" in the comparator array.
...