“Remplacer le tableau” Réponses codées

Ajouter des éléments au milieu du tableau en utilisant l'épissure

//we can add elements to middle of  array using splice

const strings=['a','b','c','d']

//go the 2nd index,remove 0 elements and then add 'alien' to it
strings.splice(2,0,'alien')

console.log(strings) //["a", "b", "alien", "c", "d"]

//what is the time complexity ???
//worst case is O(n). if we are adding to end of array then O(1)
//in our example we added to the middle of array so O(n/2)=>O(n)
Hurt Hummingbird

remplacer l'élément de tableau javascript

// Replace 1 array element at index with item 
arr.splice(index,1,item);
Kaotik

JavaScript Remplacer l'élément de tableau

array.splice(array.indexOf(valueToReplace), 1, newValue);
paramjeetdhiman

JS String Remplacer le tableau

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;
};
Adventurous Armadillo

Remplacer l'élément dans le tableau TypeScript

const index: number = items.indexOf(element);

if (index !== -1) {
    items[index] = newElement;
}
GaL

Remplacer le tableau

1
2
3
function arrayReplace(inputArray, elemToReplace, substitutionElem) {
    return inputArray.join(',').replace(new RegExp(elemToReplace, 'g'), substitutionElem).split(',').map(Number);
}
Gentle Gull

Réponses similaires à “Remplacer le tableau”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code