Answers for "javascript push to beginning array"

56

javascript push item to beginning of array

var colors = ["white","blue"];
colors.unshift("red"); //add red to beginning of colors
// colors = ["red","white","blue"]
Posted by: Guest on July-23-2019
2

push element to array to first place js

let arr = [4, 5, 6]

arr.unshift(1, 2, 3)
console.log(arr);
// [1, 2, 3, 4, 5, 6]
Posted by: Guest on June-15-2021

Code answers related to "javascript push to beginning array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language