您的位置 首页 > 数码极客

js如何取出数组值,js如何取出数组中的一个值…

方法一:es6 + forEach

let arr = [5,1,89,12]; let max = Ma(...arr);//得到最大值,es6扩展运算符 con(max)


let arrIndex = 0; arr.forEach((item,index)=>{ if(item == max){ arrIndex = index; //遍历数据,判断得到索引。 } }) con(arrIndex);


方法二:forEach

let arr = [5,1,89,12,100]; let max = arr[0]; let maxIndex = 0; arr.forEach((item,index)=>{ if(max < item){ max = item; maxIndex = index; } return max,maxIndex }) con(max,maxIndex); // 100 4

责任编辑: 鲁达

1.内容基于多重复合算法人工智能语言模型创作,旨在以深度学习研究为目的传播信息知识,内容观点与本网站无关,反馈举报请
2.仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证;
3.本站属于非营利性站点无毒无广告,请读者放心使用!

“js如何取出数组值,js如何取出数组中的一个值,如何将数组中的值取出,js取出数组的每个值,js怎么取出数组中对象的值”边界阅读