Answers for "js how to add on first place in array"

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

push at first index typescript

var a = [23, 45, 12, 67];
a.unshift(34);
console.log(a); // [34, 23, 45, 12, 67]
Posted by: Guest on December-16-2020

Code answers related to "js how to add on first place in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language