1var colors = ["white","blue"];
2colors.unshift("red"); //add red to beginning of colors
3// colors = ["red","white","blue"]
1var fruits = ["Banana", "Orange", "Apple", "Mango"];
2fruits.unshift("Lemon","Pineapple");
1let arr = [4, 5, 6]
2
3arr.unshift(1, 2, 3)
4console.log(arr);
5// [1, 2, 3, 4, 5, 6]
6
1//Add element to front of array
2var numbers = ["2", "3", "4", "5"];
3numbers.unshift("1");
4//Result - numbers: ["1", "2", "3", "4", "5"]