Answers for "js list push first"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language