Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/marijnh/Eloquent-JavaScript
/ 03_1_minimum.js
File
03_1_minimum.js
code/solutions/03_1_minimum.js:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
function
min(a, b) {
2
if
(a < b)
return
a;
3
else
return
b;
4
}
Callers
nothing calls this directly
Calls
1
min
Function · 0.85
Tested by
no test coverage detected