# Math
- mathjs (opens new window)
- number-precision (opens new window)
- bignumber.js (opens new window)
- decimal.js (opens new window)
- big.js (opens new window)
// 随机数 (min,max]
function rand(min,max){
return Math.floor(Math.random()*(max+1-min)+min);
};