> now, how would I combine objects? Sorry... I'm very new to all of this
> and can't seem to find the answers when searching on my own.
var myObj = new Hash({min: 'blah', max: 'blah', bet: 'blah'});
var myObj2 = new Hash({plus: 'bloo'});
var setJSON = JSON.encode(myObj.combine(myObj2));
Note that myObj2 does not really have to be a Hash, as combine() will
accept a native Object as well as long as the base (the var you are
adding *to*) is a Hash. But for completeness, I think you should use
Hash all around.
That's all for now... you should read through the Hash docs for
starters.
--Sandy