gpt4 book ai didi

javascript - 有没有办法以更优雅、更优化的方式编写这一小段代码? (ES6)

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

一段时间以来,我一直在尝试自学 ES6。这是我学到的东西的一个小例子,比如 let、const 和 => 函数。有没有更优雅或更短的方式来写这个?也许用 forEach 替换 for 循环?欢迎任何提示和帮助。

'use strict';
const countChar = (string, ch) => {
let counted = 0;
for (let i = 0; i < string.length; i++) {
if (string.charAt(i) === ch) {
counted += 1;
}
}
return counted;
};

const countBs = string => countChar(string, 'B');

console.log(countBs('BBC'));
console.log(countChar('kakkerlak', 'k'));

最佳答案

这是另一种缩短它的方法

'use strict';
const countChar = (string, ch) => string.split(ch).length - 1;
const countBs = string => countChar(string, 'B');

console.log(countBs('BBC'));
console.log(countChar('kakkerlak', 'k'));

关于javascript - 有没有办法以更优雅、更优化的方式编写这一小段代码? (ES6),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40638816/

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