JQuery Sende an den Start von Array
var colors = ['red','blue','green'];
/*// PUSH TO FRONT OF ARRAY
---------------------------*/
colors.unshift('yellow');
// colors = ['yellow, 'red', 'blue', 'green']
emcee