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 jeffcoughlin/30d5f2826b12fb40089c235f6f706c47 to your computer and use it in GitHub Desktop.
Save jeffcoughlin/30d5f2826b12fb40089c235f6f706c47 to your computer and use it in GitHub Desktop.
Array to list without empty values
<cfscript>
aData = [3,1,"","",3,4,"",""];
aData = arrayFilter(aData, function(item) {
return item != "";
});
writeOutput(arrayToList(aData));
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment