Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
function
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
countBs
Function · 0.85
countChar
Function · 0.85
Tested by
no test coverage detected