When I convert list into array, the values are inserted starting from index 1. Index 0 is left empty.
Why is this happening, and more importantly, is there a way to change it so that it starts from 0 index?
Example:
<cfset myList = "A,B,C,D" />
<cfset myArray = ListToArray(myList) />
<cfdump var="#myArray#" />