Answered
Why do I use the the * operator here?
Setting a 2d array:
<cfset my2darray[loopcount][loopcount2] = (loopcount * loopcount2)>
or a 3d array:
<cfset my3darray[loopcount][loopcount2][loopcount3] = (loopcount * loopcount2 *loopcount3)>
I don't understand why I need to use the * operator what is it doing? Thanks for any help on this one I am nearly there!!
<cfset my2darray[loopcount][loopcount2] = (loopcount * loopcount2)>
or a 3d array:
<cfset my3darray[loopcount][loopcount2][loopcount3] = (loopcount * loopcount2 *loopcount3)>
I don't understand why I need to use the * operator what is it doing? Thanks for any help on this one I am nearly there!!
