Answers for "how to enter the element in first postion of array in hjs"

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

Code answers related to "how to enter the element in first postion of array in hjs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language