coldfusion loop through array keys code example
Example 1: coldfusion loop array
<cfscript>
for ( item in myArray ) {
writeOutput( #item# & '<br>' );
}
</cfscript>
Example 2: cfloop coldfusion
<cfloop index="i" from="1" to="5" >
The loop index is <cfoutput>#i#</cfoutput>.
</cfloop>