數(shù)組循環(huán)
foreach 普通的遍歷
map 可以return一個數(shù)組,用來重新整理數(shù)據(jù)
for of 遍歷出key(索引) 和? val?
arr.keys() 數(shù)組下標(biāo)
arr.entries() 數(shù)組某一項(xiàng)
filter 篩選 返回一個新數(shù)組
some 類似查找,返回T/F
every 每個元素都要符合條件, 返回T/F
reduce 相當(dāng)于遞歸, 把計(jì)算結(jié)果保存到per中,再和后一個數(shù)curr計(jì)算
reduceRight? 從右向左遞歸
Array.find() 查找數(shù)組第一個滿足的值,找不到返回undefind
Array.findIndex() 查找滿足條件的索引 找不到返回-1
Array.of() 返回數(shù)組
Array.fill() 填充數(shù)組