js 快速获取数据中的最大、最小值


var  numbers = [5,23 , 1420 , 5215 , 228 , 400 , 105, 411];

var maxInNumbers = Math.max.apply(Math, numbers);

var minInNumbers = Math.min.apply(Math, numbers);

一、Math.min() 返回一组表达式中最小者

eg:

   var n = Math.min( 2 , 30 ,1 , 200-10 , 300*22 , 20-30 );

   alert(n);

   //打印出n为 -10 ;

二、Math.max() 返回一组表达式中的最大者

eg:

   var n = Math.max( 2 , 30 ,1 , 200-10 , 300*22 , 20-30 );

    alert(n);

   //打印出n为  6600;

你可能感兴趣的:(js 快速获取数据中的最大、最小值)