1 Star 0 Fork 0

steamqaqwq/js-study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.30 Array迭代器.html 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
steamqaqwq 提交于 2020-02-02 00:42 . 2020-js-study
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
let arr = ["name","sex","num"]
let arrkeys =arr.keys()
let arrvals =arr.values()
// let {value,done} = arrvals.next()
// console.log(arrvals.next())
console.log(arrkeys,arrvals)
// 遍历所有
// while(({value,done} = arrvals.next()) && done ===false){
// console.log(value,done)
// }
// 获取索引
// for (let i of arrkeys){
// console.log(i)
// }
// 获取值
/*for (let val of arrvals){
console.log(val)
}*/
// 键值对
let entries = arr.entries()
console.log(entries.next())
// value变数组 有索引及值还有长度
// 获取键值
/*for (let [keys,vals] of entries){
console.log(keys,vals)
}*/
// 对象解构获取所有
let {done:c,value:[a,b]}=entries.next()
console.log(a,b,c)
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/steamqaqwq/js-study.git
git@gitee.com:steamqaqwq/js-study.git
steamqaqwq
js-study
js-study
master

搜索帮助