To replace a string in a JavaScript array, we use the array map
and string replaace
methods.
For instance, we write
const resultArr = arr.map((x) => {
return x.replace(/,/g, "");
});
to call arr.map
with a callback that returns a new string that replace commas in x
with empty strings with replace
.
A new array with the replacements done is returned.