EN
TypeScript - insert element to array
0 points
In TypeScript it is not intuitive at first time how to insert element to array into some index position. Insert element into some index position operation can be achieved with Array.prototype.splice
method. This article is focused on how to do it.
xxxxxxxxxx
1
// index: 0 1 2 3
2
const array: string[] = ['a', 'b', 'c', 'd'];
3
4
// inserting 'new item' element into 1st index position
5
array.splice(1, 0, 'new item');
6
7
console.log(array);
Output:
xxxxxxxxxx
1
[ 'a', 'new item', 'b', 'c', 'd' ]
Notes about
Array.prototype.splice
method:
- takes as first argument index into 1st index position
- takes as second argument number of removed elements - in this case we do not remove elements
- takes as third argument added element