how to add in front array js code example
Example 1: js add element to front of array
//Add element to front of array
var numbers = ["2", "3", "4", "5"];
numbers.unshift("1");
//Result - numbers: ["1", "2", "3", "4", "5"]
Example 2: how to push items in array in javascript
let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]