首页 > web前端 > js教程 > 查找数组中的最大数字 - JavaScript

查找数组中的最大数字 - JavaScript

Susan Sarandon
发布: 2024-10-08 20:23:29
原创
404 人浏览过

Find the maximum number in an array - JavaScript

使用 JavaScript 从正整数数组中查找最大数字

解决方案

//findMaxNumber.js
function findMaxNumber(numbers) {
//Initializes result to track the maximum number, starting at 0.
  let result = 0;

  //Stores the length of the numbers array for use in the loop.
  const numbersLength = numbers.length;

  //Check if the array is not empty before processing it.
  if (numbersLength > 0) {

    //Loops through each number in the array.
    for (let i = 0; i < numbersLength; i++) {

      //Compare each number to the result to check if it's larger.
      if (numbers[i] > result) {

        //Updates result with the current number if it's the largest
        result = numbers[i];
      }
    }
    console.log(result);
    return result;
  }

  return result;
}

findMaxNumber([5, 33, 47, 103]);
登录后复制

结果

> 103
登录后复制

以上是查找数组中的最大数字 - JavaScript的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板