Compare Lists

Two lists are equal if they contain exactly the same number of elements and every element is identical to the corresponding element in the other list. If there is a difference, the first elements that differ determine which list is greater.

For example:

["A","r","m","o","r"]

is less than

["A","r","t"].

See Comparison Operators.