Whatever message this page gives is out now! Go check it out!
ArraySet(array, start_pos, end_pos, value) |
Parameter | Description |
array | Name of an array. |
start_pos | Starting index position of range to set. |
end_pos | Ending index position of range to set. If this value is greater than array length, ColdFusion adds elements to array. |
value | Value to which to set each element in the range. |
<cfscript>
myArray=ArrayNew(1)
temp = ArraySet(myArray, 1,6, "Initial Value")
writeDump(myArray)
// Set some values
myArray[1] = "Sample Value"
myArray[3] = "43"
myArray[6] = "Another Value"
writeOutput("Updated array")
writeDump(myArray)
</cfscript>