Jsの数组练习-求一组数中的最大值和最小值,以及所在位置
Posted 小卜-Tony
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jsの数组练习-求一组数中的最大值和最小值,以及所在位置相关的知识,希望对你有一定的参考价值。
要求:求一组数中的最大值和最小值,以及所在位置
代码实现:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <script> // 定义变量 var numArr = [1, 99, 88, -110, 77, 89, 10010, -100]; var maxValue = numArr[0], minValue = numArr[0]; //姑且先定义 第一个索引为最大值和最小值 var maxIndex = 0; minIndex = 0; // 姑且将第一个索引定位最大和最小 //遍历整个数组,并且找出 最大 最小值 for (i = 0; i < numArr.length; i++) { if (numArr[i] > maxValue) { maxValue = numArr[i]; maxIndex = i; } if (numArr[i] < minValue) { minValue = numArr[i]; minIndex = i; } } console.log(maxValue); console.log(minValue); console.log(maxIndex); console.log(minIndex); </script> </body> </html>
以上是关于Jsの数组练习-求一组数中的最大值和最小值,以及所在位置的主要内容,如果未能解决你的问题,请参考以下文章
求数组的最小数最大值,求一组数的平均数,sort函数详解,类数组转数组