Skip to content

Instantly share code, notes, and snippets.

Created February 19, 2016 19:17
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 anonymous/405263637e37c77a3f6c to your computer and use it in GitHub Desktop.
Save anonymous/405263637e37c77a3f6c to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
data = ["Neil Diamond","Depeche Mode","The Cure","Cher","Ace of Base","Frank Sintra", "The Church"];
arraySort(data, function(a,b) {
//remove the The
var first = a;
var second = b;
first = replace(first, "The ","");
second = replace(second, "The ","");
return first gt second;
});
writeDump(data);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment