javascript enter element in array code example

Example 1: insert item into array specific index javascript

myArray.splice(index, 0, item);

Example 2: array insertion javascript

Array.prototype.insert = function ( index, item ) {
    this.splice( index, 0, item );
};

Example 3: how to append object in array javascript

var select =[2,5,8];
var filerdata=[];
for (var i = 0; i < select.length; i++) {
  filerdata.push(this.state.data.find((record) => record.id == select[i]));
}
//I have a data which is object,
//find method return me the filter data which are objects
//now with the push method I can make array of objects

Tags:

Php Example