mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-10 10:01:51 -04:00
328 B
328 B
title
| title |
|---|
| Math Min |
Math Min
The Math.min() function returns the smallest of zero or more numbers.
You can pass it any number of arguments.
Math.min(7, 2, 9, -6);
// returns -6