Jsの數組練習-求一組數中的最大值和最小值,以及所在位置
阿新 • • 發佈:2018-06-24
span http ima scrip ice viewport 代碼實現 pre val
要求:求一組數中的最大值和最小值,以及所在位置
代碼實現:
<!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の數組練習-求一組數中的最大值和最小值,以及所在位置