Encontre um número curto no JavaScript de Array

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