Answers for "replace specific values in array"

20

replace array element javascript

// Replace 1 array element at index with item 
arr.splice(index,1,item);
Posted by: Guest on March-12-2020
2

javascript replace array element

array.splice(array.indexOf(valueToReplace), 1, newValue);
Posted by: Guest on September-15-2020
0

replace specific values in array

var fruits = [“banana”, “apple”, “orange”, “watermelon”, “apple”, “orange”, “grape”, “apple”];
fruits.splice(0, 2, “potato”, “tomato”);
console.log(fruits); // returns [“potato”, “tomato”, “orange”, “watermelon”, “apple”, “orange”, “grape”, “apple”]
Posted by: Guest on November-26-2020

Code answers related to "replace specific values in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language