Adds an item to the beginning of the array
let myArray = [1, 2, 3]prepend(myArray, 0); // myArray => [0, 1, 2, 3]
Generated using TypeDoc
Adds an item to the beginning of the array
Example