Languages
[Edit]
EN

JavaScript - replace element in array

1 points
Created by:
Ela-Davey
633

In JavaScript, it is not intuitive to replace elements in an array. Replace operation can be achieved with Array.prototype.splice method. This article is focused on how to do it.

1. Replace element with Array.prototype.splice method example

// ONLINE-RUNNER:browser;

//  index:    0    1    2    3
var array = ['a', 'b', 'c', 'd'];

// removing element on 1st index position 
// and inserting 'replaced item' element on same position
array.splice(1, 1, 'replaced item');

console.log(array);

Output (with NodeJS):

[ 'a', 'replaced item', 'c', 'd' ]

Notes about Array.prototype.splice method:

  • takes as first argument index of replaced element
  • takes as second argument number of removed elements - in this case we remove one element and put on its place new one
  • takes as third argument added element in removed element place

References

  1. Array.prototype.splice method - MDN Docs 

Alternative titles

  1. JavaScript - how to replace element in array?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join