Kip
Member since Jul 8, 2011
- Profile: /members/8591-kip.htm
- URL: http://www.vacant-nebula.com
- Comments: 2
Recent Blog Comments By Kip
-
ColdFusion Arrays Passed By Value
Posted on Jul 8, 2011 at 12:57 PM
It looks like all array assignment in ColdFusion is by value... which seems really bad. Compare this array code: arr = ['beginning']; arr2 = arr; ArrayAppend(arr2, 'end'); With similar structure code: stc = {beginning='beginning'}; stc2 = stc; stc2.middle = 'end'; Somehow ColdFusion ... read more »