Skip to content

Instantly share code, notes, and snippets.

@bharat20185
Created December 23, 2019 13:25
Show Gist options
  • Save bharat20185/0b600a003471c17b32ed849ea97863c8 to your computer and use it in GitHub Desktop.
Save bharat20185/0b600a003471c17b32ed849ea97863c8 to your computer and use it in GitHub Desktop.
<cfscript>
variables.heroes = "Nick Fury, Iron Man, Vision, Caption America, Thor";
variables.heroes.each(function(hero, index, list){
writeOutput(index & '. ' & hero);
writeOutput('<br />');
});
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment