View Single Post
  #1 (permalink)  
Old 09-22-2003, 07:28 PM
manix manix is offline
Junior Member
 
Join Date: Sep 2003
Posts: 2
Default associativ array ?

Sorry if it was already posted, i'm new here.

I don't know ECMA specification about this, but it seems that associativ arrays are not supported in FFish ( they are in Actionscript and Javascript ).

Are you planning to support it ?

Code:
var _array = new Array();
_array[ 3 ] = 123; // ok
_array[ "test" ] = 456; // error (invalid index)
Thanks, and bravo for the great work
M.
Reply With Quote