let a= {x:100} let b=a; b.x=200; console.log(a,b) //result -- {x:200}, {x:200}
how it comes like this? means when we are changing b's value, how is a's value change?