gpt4 book ai didi

javascript - 字符串上的 for/in 循环是什么意思?

转载 作者:行者123 更新时间:2023-12-03 23:25:22 27 4
gpt4 key购买 nike

这段代码甚至是有效的 JavaScript 吗?

for (item in "abc") {  
console.log(item);
}

输出:

0  
1
2

最佳答案

What is the meaning of a for/in loop on a string?

如果您将字符串视为字符数组,那么循环遍历字符串的目的就是遍历每个字符。

在 JavaScript 中,for..in 循环将返回对象或数组中的 keys,因此您看到的是数组索引。更有用的格式是:

var str,
item;
str = "abc";
for (item in str) {
console.log(str[item]);
}

这将输出 'a''b''c'

Is this code even valid JavaScript?

现在是,但过去有问题。

请注意,对于较旧的浏览器,字符串不支持数组索引,因此一种向后兼容的遍历字符串中字符的方法是:

var str,
i;
str = "abc";
for (i = 0; i < str.length; i++) {
console.log(str.charAt(i));
}

关于javascript - 字符串上的 for/in 循环是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27324822/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com