其他分享
首页 > 其他分享> > 利用函数求任意个数的最大值

利用函数求任意个数的最大值

作者:互联网

 

 

 <script>
    function getMax() {
      let max = arguments[0];
      for (let i = 0; i < arguments.length; i++) {
        if (arguments[i] > max) {
          max = arguments[i];
        }
      }
      return max;
    }
    console.log(getMax(5, 3, 4, 9));
    console.log(getMax(10, 15, 32, 15, 40));
    console.log(getMax(20, 45, 31, 60, 54));
  </script>

 

标签:console,log,max,最大值,个数,let,arguments,getMax,任意
来源: https://www.cnblogs.com/0722tian/p/16123211.html