Created
December 23, 2019 11:34
-
-
Save bharat20185/bec769a5021fc88545931f78e2b509ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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