CF Muse Reader, Rashid Aslam Asks:
Can i do the same kind of array initialization in Coldfusion as I do in PHP. Like This:
$lang['abrvdays'] = array("Sun", "Mon", "Tue");
Actually, using a list to create an array in Coldfusion is slightly easier than creating and populating an array from scratch. Instead of arrayNew() followed by set statements you can simply use the listToArray() function.