亚洲国产成人,色呦呦内射午夜,无码一级片,无码人妻少妇色欲AV一区二区

<samp id="jg8hh"></samp>

<p id="jg8hh"></p><delect id="jg8hh"><em id="jg8hh"><blockquote id="jg8hh"></blockquote></em></delect><acronym id="jg8hh"><dd id="jg8hh"></dd></acronym><button id="jg8hh"><dd id="jg8hh"><acronym id="jg8hh"></acronym></dd></button><samp id="jg8hh"><em id="jg8hh"><blockquote id="jg8hh"></blockquote></em></samp>

<p id="jg8hh"></p>

<samp id="jg8hh"><legend id="jg8hh"></legend></samp>
<samp id="jg8hh"><legend id="jg8hh"><samp id="jg8hh"></samp></legend></samp>

<samp id="jg8hh"></samp>

<p id="jg8hh"></p><acronym id="jg8hh"></acronym><p id="jg8hh"><dd id="jg8hh"><acronym id="jg8hh"></acronym></dd></p><p id="jg8hh"></p>

<p id="jg8hh"></p><delect id="jg8hh"><legend id="jg8hh"><var id="jg8hh"></var></legend></delect><button id="jg8hh"><listing id="jg8hh"><i id="jg8hh"></i></listing></button>
<delect id="jg8hh"><legend id="jg8hh"><var id="jg8hh"></var></legend></delect>

總結(jié)javascript中遍歷數(shù)組的幾種方法

發(fā)布時(shí)間:2024-08-16
本篇文章給大家總結(jié)了一些javascript遍歷數(shù)組的幾種方法。有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)大家有所幫助。
有幾種方法可以遍歷數(shù)組,下面將逐個(gè)羅列!
while循環(huán)
let index = 0;const array = [1, 2, 3, 4, 5];while (index < array.length) { console.log(array[index]); index ;}
for循環(huán)
const array = [1,2,3,4,5];for(let index=0;index<array.length;index ){ console.log(array[index]);}for(let index in array){ console.log(array[index]);}
foreach
const array=[1,2,3,4,5];array.foreach(function(current_value,index,array){ console.log(`at index ${index} in array ${array} the value is ${current_value}`)})
map
最后一個(gè)構(gòu)造很有用,但是不會(huì)返回新數(shù)組,這對(duì)于你的特定情況可能是不希望的。map通過(guò)對(duì)每個(gè)元素應(yīng)用一個(gè)函數(shù)然后返回新數(shù)組來(lái)解決此問(wèn)題。
const array = [1,2,3,4,5];const square = x =>math.pow(x,2);const squares = array.map(square);console.log(`${array}`);console.log(`${squares}`)
reduce
reduce()方法對(duì)累加器和數(shù)組中的每個(gè)元素(從左到右)應(yīng)用一個(gè)函數(shù),以將其減小為單個(gè)值
const array = [1,2,3,4,5];const sum = (x,y) => x y;const array_sum = array.reduce(sum,0);console.log(`the sum of arrray:${array} is ${array_sum}`);
filter
根據(jù)布爾函數(shù)過(guò)濾篩選數(shù)組中的元素
const array = [1,2,3,4,5];const even = x => x%2 === 0;const even_array = array.filter(even);console.log(`even numbers in array ${array} : ${even_array}`);
every
得到了一個(gè)數(shù)組,想測(cè)試每個(gè)元素是否滿足給定條件
const array = [1,2,3,4,5,8];const under_six = x => x<6;if(array.every(under_six)){ console.log(`every elemnet in the array is less than 6`);}else{ console.log(`at least one element in the array was bigger than 6`);}
some
測(cè)試是否至少有一個(gè)元素與布爾函數(shù)匹配
const array = [2,4,5,6,8];const over_five = x => x>5;if(array.some(over_five)){ console.log(`at least one element bigger than 5 was found`);}else{ console.log(`no element bigger than 5 was found`);}
到此就結(jié)束啦,如果還有其他的歡迎補(bǔ)充!
相關(guān)教程推薦:javascript視頻教程
上一個(gè):木衛(wèi)二探測(cè)器計(jì)劃2024年發(fā)射 九種儀器探尋生命跡象
下一個(gè):MODEM接口

哪些地方適合使用改性四氟墊片呢
工業(yè)用一乙胺 - 水含量的測(cè)定
鋼琴物流運(yùn)輸 鋼琴物流一般多少錢(qián)
工傷工資發(fā)放標(biāo)準(zhǔn)是什么
碳纖
泵速控制能有效實(shí)現(xiàn)成本控制
IFM溫度傳感器 IFT212 德國(guó)原裝
各單據(jù)日期關(guān)系,單據(jù)日期怎么設(shè)置
380億!寧德時(shí)代打造6大海外動(dòng)力電池項(xiàng)目
win10系統(tǒng)任務(wù)欄搜索框不能用怎么辦呀(win10任務(wù)欄搜索框用不了)