Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/marijnh/Eloquent-JavaScript
/ countBs
Function
countBs
code/solutions/03_3_bean_counting.js:11–13 ·
view source on GitHub ↗
(string)
Source
from the content-addressed store, hash-verified
9
}
10
11
function
countBs(string) {
12
return
countChar(string,
"B"
);
13
}
14
15
console.log(countBs(
"BBC"
));
16
// → 2
Callers
1
03_3_bean_counting.js
File · 0.85
Calls
1
countChar
Function · 0.85
Tested by
no test coverage detected