0 votes
in JavaScript by
Is const variable makes the value immutable in Javascript?

1 Answer

0 votes
by

No, the const variable doesn't make the value immutable. But it disallows subsequent assignments(i.e, You can declare with assignment but can't assign another value later)

const userList = [];
userList.push("John"); // Can mutate even though it can't re-assign
console.log(userList); // ['John']

Related questions

0 votes
asked Mar 10 in JavaScript by DavidAnderson
0 votes
asked Oct 26, 2023 in JavaScript by DavidAnderson
...