typescript-coder

-In js or in ts though array and objects u declare as const a=[1,2,3] u can still update a[1]=2 or obj.name="mahesh" ->Because we r not changing the refernce rather we are changing the inside value so u can use readonly keyword to avoid that then thw compiler will complain