Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/81dad95f311b973880c685b990034870 to your computer and use it in GitHub Desktop.
Save trycf/81dad95f311b973880c685b990034870 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
numberList = 'apple,orange,banana';
numberList1 = 'apple,orange1,banana';
threeOrMore = listFilter(numberList, function(item){
return listfind(numberList1, item, ',', false);
});
writedump(threeOrMore);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment