how ot change an item in an array code example
Example 1: replace array element javascript
// Replace 1 array element at index with item
arr.splice(index,1,item);
Example 2: modify array js
let newArray = oldArray.map(funcToEachElem);
// Replace 1 array element at index with item
arr.splice(index,1,item);
let newArray = oldArray.map(funcToEachElem);