Click here to show toolbars of the Web Online Help System: show toolbars |
Specifies the array to work with.
Specifies the value to search for.
1. |
In the following example, the array contains an element with the value 10, so the function returns true. CONTAINS([0, 1,
2, 3, 4, 5, 6, 7, 8, 9, 10], 10)
|
2. |
In this example, the array does not contain an element with the value 10, so the function returns false. CONTAINS([0, 1,
2, 3, 4, 5], 10)
|