xxxxxxxxxx
// Replace 1 array element at index with item
arr.splice(index,1,item);
xxxxxxxxxx
function solution(inputArray, elemToReplace, substitutionElem) {
return inputArray.map((item) => {
if (item === elemToReplace) {
return substitutionElem;
}
return item;
});
}
xxxxxxxxxx
function solution(inputArray, elemToReplace, substitutionElem) {
return inputArray.map((x) => (x === elemToReplace ? substitutionElem : x));
}
xxxxxxxxxx
String.prototype.replaceArray = function(find, replace) {
var replaceString = this;
for (var i = 0; i < find.length; i++) {
replaceString = replaceString.replace(find[i], replace[i]);
}
return replaceString;
};
xxxxxxxxxx
a.forEach(function(item, i) { if (item == 3452) a[i] = 1010; });
xxxxxxxxxx
var array1 = ['S', 'T', 'A', 'C', 'K', 'O', 'V', 'E', 'R', 'F', 'L', 'O', 'W'];
array1.fill('X', 3, 10)
console.log(array1)