ArrayFindNoCase
( value, index ) => {
return true; // if the value is found, else false
}
array = [ 1, 2, 3, 4, 5 ];
index = array.find( ( value, index ) -> {
return value == 3;
} );
Method Signature
ArrayFindNoCase(array=[array], value=[any], substringMatch=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Related
Last updated
Was this helpful?
