array.some()
This function calls a given closure/function with every element in a given array and returns true, if one of the closure calls returns true.
array.some( closure=function, parallel=boolean, maxThreads=number )
Returns: Boolean
| Argument | Description |
|---|---|
|
closure
function,
required
|
edit
function/closure that implements the following constructor [function(any value[, numeric index,array array]):boolean]. Alias: function, callback, udf |
|
parallel
boolean,
optional
|
edit
execute closures parallel |
|
maxThreads
number,
optional
|
edit
maximum number of threads executed, ignored when argument "parallel" is set to false Alias: maxThreadCount |
Examples
edit newArray = ['a','b','c','b','d','b','e','f'];
writedump(newArray);
testOne = newArray.some(function(item,idx,arr){
return item == 'c';
});
writedump(testOne);
testTwo = newArray.some(function(item,idx,arr){
return item == 'k';
});
writedump(testTwo);