Learning ColdFusion 8: All Hail The New ++ Operator

<!--- Define an implicit array. --->
<cfset arrValues = [ 1, 2, 3 ] />
 
<!--- Get the next index we would use for the array. --->
<cfset intNextIndex = ArrayLen( arrValues )++ />

For Cut-and-Paste