string.some()

This function calls a given closure/function with every element in a given string and returns true, if one of the closure calls returns true.

Introduced: 6.0.0.126

string.some( closure=function )

Returns: Boolean

Argument Description
closure
function, optional

The value to find or a closure/function that gets every value of the array as input and returns true if the given value is right.

Alias: function, callback, udf

Examples

myString="lucee";
	callback=(x)=>x >= 'a';
	writeDump(myString.some(callback));
	callback_1=(x)=>x >= 'z';
	writeDump( myString.some(callback_1));

See also