js insert to array first 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: javascript array add front
// example:
let yourArray = [2, 3, 4];
yourArray.unshift(1); // yourArray = [1, 2, 3, 4]
// syntax:
// <array-name>.unshift(<value-to-add>);