gpt4 book ai didi

javascript - 计算数组中出现的次数

转载 作者:行者123 更新时间:2023-11-30 20:13:54 26 4
gpt4 key购买 nike

<分区>

我正在尝试计算给定数组中逗号和问号的数量。这是我到目前为止所拥有的,但它只返回我有多少个逗号。我无法理解如何同时返回有多少个问号。

var str = 'hello, how are you today? I am not bad and you?'

function checker(str){
var count = 0
for(var i = 0; i < str.length; i++){
if(str[i] == ",")
count++
}
return `There is ${count} comma`
}
checker(str)

//this returns "There is 1 comma"

我知道代码只显示计算逗号。我不确定如何同时包含代码来计算问号。

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