Answers for "add new item to beginning of array js"

56

javascript add new array element to start 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
0

prepend to js array

var a = [1, 2, 3, 4];
a.unshift(0);
a; // => [0, 1, 2, 3, 4]
Posted by: Guest on August-23-2020

Code answers related to "add new item to beginning of array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language