Skip to content

SET

The SET function returns a new set containing the specified domains.

For example, this statement:

martialArt = SET("1.01");

defines the martialArt set and populates it with domain 1.01. This other example statement:

cinema = SET(["20000226", "15000000"]);

defines the cinema set and populates it with domains 20000226 and 15000000.

The syntax is:

SET(domain)

Or:

SET([domains])

where:

  • domain is the domain name or ID.
  • domains is a comma-separated list of domain names or IDs.