Files
freeCodeCamp/guide/chinese/javascript/standard-objects/math/math-min/index.md
2018-10-16 21:32:40 +05:30

18 lines
343 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Math Min
localeTitle: 数学敏
---
## 数学敏
Math.min函数返回零或更多数字中的最小值。
你可以传递任意数量的参数。
```javascript
Math.min(7, 2, 9, -6);
// returns -6
```
#### 更多信息:
[MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/min)