ArrayFind
( 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
ArrayFind(array=[array], value=[any], substringMatch=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Find an "Apple" in an array of fruit
arrayFind is not Case Sensitive
Member Functions: Find an "Apple" in an array of fruit
Additional Examples
Related
Last updated
Was this helpful?
