const value works only for prim types ,but if we reate object with const
we will be able to change object properties values.
This is beacouse we dont change value on stack, ve change only value on
heap. But we cant change object with const to anouther object
Ex const jesica={ name="j"} const jm=jessica jm={} this wont work
,it will onli work if we use let variable let jm=jessica jm{}.
[Link] radi samo na prvom levelu tj shallow copy ako imamo objekt u objektu
ne radi.