const array = ["a", "b", "c", "d"];
array[1] = 2;
console.log(array); //- ['a',2,'c','d']
In this example I gave, I changed the value of the constant dynamically, too, it is possible to do the same with objects. I would like to...
asked by
29.09.2018 / 01:17