Subj : about Array Object To : netscape.public.mozilla.jseng From : lyg Date : Wed Aug 18 2004 10:16 am I need a Variant array class. the elements can be accessed through index. such as JSObject *linkObj = JSVAL_TO_OBJECT(linksObj[index]). the reason why i need this class is that in my app the array object usually has many elements, if I used the Array Class privided by JS engine, it will spent many memery for JSProperty struct. So I expect to implement a new variant Array Class. It's element can only accessed by index not support lementName( linksObj{"eleName"}). Is it possible to realize my idea? can Someone help me? Thanks! .