How to insert an element at a specific index in an array with Node.js

1 Answer

0 votes
let array = [4, 9, 8, 6, 5, 7, 1];
let index = 3;
let newElement = 1000;

// Insert the new element at the specified index
array.splice(index, 0, newElement);

console.log(array); 



/*
run:

[
  4, 9, 8, 1000,
  6, 5, 7,    1
]

*/

 



answered Feb 20, 2025 by avibootz

Related questions

1 answer 159 views
1 answer 162 views
1 answer 116 views
1 answer 157 views
...