Subj : [spidermonkey] how to modify the [[value]] of an object To : netscape.public.mozilla.jseng From : franck Date : Wed Aug 10 2005 11:51 am Hello, I try this in javascript : var obj = Object(123); obj.foo = 678; typeof( obj ); // => object obj; // => 123 obj.foo; // 678 And I wondering how to access the [[value]] (123 in my example) of an object in native code. Thanks, Franck. .