change existing array code example
Example 1: modify array js
let newArray = oldArray.map(funcToEachElem);
Example 2: js array modify element
people[0] = "Georgie";
let newArray = oldArray.map(funcToEachElem);
people[0] = "Georgie";