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