首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
JavaScript遍历--for in中的小细节
JavaScript遍历--for in中的小细节
tech
2023-02-24
97
当使用for in遍历数组的时候,索引 i 的类型为string
const
arr
=
[
1
,
2
,
3
,
4
]
;
for
(
let
i
in
arr
)
{
console
.
log
(
typeof
i
)
;
//string
}
for
(
let
i
=
0
;
i
<
arr
.
length
;
i
++
)
{
console
.
log
(
typeof
i
)
;
//number
}
转载请注明原文地址:https://tech.qufami.com/read-10010.html
最新回复
(
0
)