gpt4 book ai didi

javascript - 简单的 JavaScript 字数统计函数

转载 作者:搜寻专家 更新时间:2023-11-01 04:52:16 24 4
gpt4 key购买 nike

我终于开始学习 JavaScript,但出于某种原因我无法使用这个简单的函数。请告诉我我做错了什么。

function countWords(str) {
/*Complete the function body below to count
the number of words in str. Assume str has at
least one word, e.g. it is not empty. Do so by
counting the number of spaces and adding 1
to the result*/

var count = 0;
for (int 0 = 1; i <= str.length; i++) {
if (str.charAt(i) == " ") {
count ++;
}
}
return count + 1;
}
console.log(countWords("I am a short sentence"));

我收到一个错误 SyntaxError: missing ;在 for 循环初始化器之后

感谢您的帮助

最佳答案

Javascript 中没有int 关键字,使用var 声明变量。此外,0 不能是变量,我确定您的意思是声明变量 i。此外,对于字符串中的字符,您应该从 0 循环到 length-1:

for (var i = 0; i < str.length; i++) {

关于javascript - 简单的 JavaScript 字数统计函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16753732/

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