Displaying 1 result from an estimated 1 matches for "optionforthisfunct".
2006 Jul 10
11
prototype hash method
var v1  = {
                  a: ''value for a'',
                  b:''value for b''
               }
var v2  = {
                   c: ''value for c'',
                   d: function(){some code...}
               };
var v3 = v2.merge(v1);
I''m getting an error doing this...
what is wrong?