Whatever message this page gives is out now! Go check it out!
| Parameter | Description |
array | Array to search in. |
value | Object to search for. |
<cfscript>
myArray=[1,2,3,4,5];
writeoutput(ArrayContains(myArray,3) & " | "); //returns True since 3 is a member of myArray
writeoutput(ArrayContains(myArray,6)); //returns False since 6 is not a member of myArray
</cfscript>