Skip to content

Instantly share code, notes, and snippets.

@bharat20185
Created December 23, 2019 11:34
Show Gist options
  • Save bharat20185/bec769a5021fc88545931f78e2b509ed to your computer and use it in GitHub Desktop.
Save bharat20185/bec769a5021fc88545931f78e2b509ed to your computer and use it in GitHub Desktop.
<cfscript>
variables.hero = {
'name': 'Iron Man',
'movies': ['Iron Man','Iron Man 2','The Avengers','Iron Man 3','Avengers: Age of Ultron','Captain America: Civil War','Spider-Man: Homecoming','Avengers: Infinity War','Avengers: Endgame']
};
variables.hero.each(function(key, value, struct){
writeDump(arguments);
});
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment