add element to array javascript first code example
Example 1: javascript append how first element
parentElement.prepend(newFirstChild)
Example 2: javascript array add front
let yourArray = [2, 3, 4];
yourArray.unshift(1);
Example 3: unshift method in javascript
var name = [ "john" ];
name.unshift( "charlie" );
name.unshift( "joseph", "Jane" );
console.log(name);
[" joseph "," Jane ", " charlie ", " john "]
Example 4: insert element at beginning of array javascript
const array = [3, 2, 1]
const newFirstElement = 4
const newArray = [newFirstElement].concat(array)
console.log(newArray);
Example 5: javascript append how first element
var eElement;
var newFirstElement;
eElement.insertBefore(newFirstElement, eElement.firstChild);