Найдите короткий номер в массиве JavaScript

Array.min = function( array ){
    return Math.min.apply( Math, array );
};
Xanthous Xenomorph