Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/bd63f62576a1586f6013214d19003384 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/bd63f62576a1586f6013214d19003384 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
myStruct=StructNew();
myStruct={c="Berlin", a="London",b="Paris",d="New York",e="Dublin"};
mySort=StructSort(myStruct,"text","asc"); //Sorts the top level keys in the struct in ascending order
WriteOutput(serializeJSON(myStruct));
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment