I have something like this
var oneTest = new CustomObj({
prop1 : 'value1',
prop2 : 'value2',
prop3 : 'value3'
})
var twoText = Object.clone(oneTest)
twoText.prop2 = "newvalue2"
And when I console log twoText I see something like
+Data
prop2
Inside Data is a prop2 that has the value of "value2". THAT is the one I want to change/override... yet the console shows me that the prop2 is outside of the data structure so when I am acting on the cloned obj I am not getting the results i need.
I tried obj.extend etc.... and that didn't work, perhaps my syntax was wrong. Any advice?
var oneTest = new CustomObj({
prop1 : 'value1',
prop2 : 'value2',
prop3 : 'value3'
})
var twoText = Object.clone(oneTest)
twoText.prop2 = "newvalue2"
And when I console log twoText I see something like
+Data
prop2
Inside Data is a prop2 that has the value of "value2". THAT is the one I want to change/override... yet the console shows me that the prop2 is outside of the data structure so when I am acting on the cloned obj I am not getting the results i need.
I tried obj.extend etc.... and that didn't work, perhaps my syntax was wrong. Any advice?
Comment