Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js push to start of array

var colors = ["white","blue"];
colors.unshift("red"); //add red to beginning of colors
// colors = ["red","white","blue"]
 
PREVIOUS NEXT
Tagged: #js #push #start #array
ADD COMMENT
Topic
Name
6+9 =