<cfscript> | |
arrayOfStrings = [ 'a', 'at', 'cat', 'scat', 'catch' ]; | |
regex = '.+at'; | |
writeOutput( arrayOfStrings.reduce( function( result='', item ){ return len( result ) ? result : item.reFind( regex ) ? item : ''; } ) ); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
I thought about nested ternaries too but figured Adam would chastise me for it. ;)