I have two objects like:
var a = { a1: 'a1', a2: 'a2', a3: {}}
var b = { a1: 'b1', a2: 'b2', a3: {}}
How i can assign values to the properties of one object to another?
If i try use a=b
As I get an object a link to b. I just want to equate the value of the properties.