array.unshift [method]

array.unshift( ... )

prepends the variables passed to the beginning of array in the same order, returns the array for chaining

a = [ 5 ];
a.unshift( 6, 7 ); // a = [6,7,5] now