insert at an index array js code example
Example 1: insert item into array specific index javascript
myArray.splice(index, 0, item);
Example 2: add new element by index js
const arr = [ 1, 2, 3, 4 ];
arr[5] = 'Hello, world!';
console.log(arr); // [ 1, 2, 3, 4, <1 empty item>, 'Hello, world!' ]
console.log(arr.length); // 6