MCPcopy 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

1function min(a, b) {
2 if (a < b) return a;
3 else return b;
4}
5
6console.log(min(0, 10));
7// → 0

Callers 1

03_1_minimum.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected