coldfusion loop array

Solutions on MaxInterview for coldfusion loop array by the best coders in the world

showing results for - "coldfusion loop array"
Mila
30 May 2017
1<cfscript>
2    for ( key in myStruct ) {
3        writeOutput( '#key#: #myStruct[key]#<br>' );
4    }
5</cfscript>
6
Halima
30 Nov 2019
1<cfscript>
2    for ( item in myArray ) {
3        writeOutput( #item# & '<br>' );
4    }
5</cfscript>
6
Paola
23 Jul 2017
1<cfset myList = 'Jeff,John,Steve,Julliane'>
2<cfloop list="#myList#" index="item">
3    #item#<br>
4</cfloop>
5