Answers for "add item as the first element to an array javascript"

2

javascript append how first element

// 2018+ Version
parentElement.prepend(newFirstChild)
Posted by: Guest on July-26-2020
1

How can I add new array elements at the beginning of an array in JavaScript?

var arr = [23, 45, 12, 67];
arr = [34, ...arr]; // RESULT : [34,23, 45, 12, 67]

console.log(arr)
Posted by: Guest on March-15-2022

Code answers related to "add item as the first element to an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language