Jquery SEND TO START OF ARRAY code example
Example: Jquery SEND TO START OF ARRAY
var colors = ['red','blue','green'];
/*// PUSH TO FRONT OF ARRAY
---------------------------*/
colors.unshift('yellow');
// colors = ['yellow, 'red', 'blue', 'green']