作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一段时间以来,我一直在尝试自学 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/
我是一名优秀的程序员,十分优秀!