Hacker News new | ask | show | jobs
by laurencerowe 2460 days ago
A const declaration only ensures that the variable always points to the same object, not that that object is immutable. For instance in JS:

const foo = {};

foo.bar = 1;

1 comments

That depends on the language.