CenterView Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Function: subSet()

Returns True if all values in one subset exist in another.

Syntax

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.

See Also

  • No labels