HLJ 发布于
2020-04-29 15:16:44

es6 数组的entries(),keys()和values()实例方法

  • Array.keys() 函数: 返回键名的遍历器。
  • Array.values() 函数: 返回键值的遍历器。
  • Array.entries() 函数: 返回所有成员键值对遍历器。
const array=['good', '1230','.com']

1、Array.keys()

for (let index of array.keys()) {
  console.log(index);
}
// 0
// 1
// 2

2、Array.values()

for (let elem of array.values()) {
  console.log(elem);
}
// 'good'
// '1230'
// '.com'

3、Array.entries()

for (let [index, elem] of array.entries()) {
  console.log(index, elem);
}
// 0 "good"
// 1 "1230"
// 2 ".com"
当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2020-04-29/521.html
最后生成于 2023-06-27 21:37:20
此内容有帮助 ?
0