gpt4 book ai didi

javascript - 如何在for循环中计算单词长度

转载 作者:行者123 更新时间:2023-11-28 15:02:46 25 4
gpt4 key购买 nike

我有这样的循环数据:

for (var i = 0; i < 11;i++){
console.log(i);
}

我的问题如何获得字长,所以我想得到这样的结果:

0 <-- this length is 1
1 <-- this length is 1
2 <-- this length is 1
3 <-- this length is 1
4 <-- this length is 1
5 <-- this length is 1
6 <-- this length is 1
7 <-- this length is 1
8 <-- this length is 1
9 <-- this length is 1
10 <-- this length is 2

最佳答案

您可以使用 toString() 将其解析为字符串函数,然后得到 length字符串

for (var i = 0; i < 11;i++){
console.log(i + ' <- this length is ' + i.toString().length);
}

关于javascript - 如何在for循环中计算单词长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40277627/

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