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/8f0b2d5d4e1c8abb2fe6335f47680427 to your computer and use it in GitHub Desktop.
Save trycf/8f0b2d5d4e1c8abb2fe6335f47680427 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
things = ["apples","oranges","rocks","jets","developers"];
formattedList = things.reduce((list,current)=>
"#list#<li>#current#</li>"
,"<ul>") & "</ul>";
writeDump(
formattedList
);
writeOutput(
formattedList
);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment