Answers for "array method to push item at first position"

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
3

javascript push to first index

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.unshift("Lemon","Pineapple");
Posted by: Guest on May-26-2021

Code answers related to "array method to push item at first position"

Code answers related to "Javascript"

Browse Popular Code Answers by Language