MCPcopy Create free account
hub / github.com/marijnh/Eloquent-JavaScript / 03_3_bean_counting.js

File 03_3_bean_counting.js

code/solutions/03_3_bean_counting.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1function countChar(string, ch) {
2 let counted = 0;
3 for (let i = 0; i < string.length; i++) {
4 if (string[i] == ch) {

Callers

nothing calls this directly

Calls 2

countBsFunction · 0.85
countCharFunction · 0.85

Tested by

no test coverage detected