val
array
Add a value onto the start of an array.
array = [1,2,3]; unshift(array,4); // array = [4,1,2,3]