💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[Math](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Math "Math 是一个内置对象,它拥有一些数学常数属性和数学函数方法。Math 不是一个函数对象。") Math:   无须声明直接用 Math.ceil(数值)  进一取整 Math.floor(数值);   舍去取整 Math.round(数值);  四舍五入 Math.max(数值); 最大值 Math.min(数值); 最小值 Math.pow(数值,n次方);   幂 Math.random(数值);  随机数(0≤X<1) 获取0-5随机数 ~~~ Math.floor(Math.random()*6); ~~~ 获取10-100的随机数 ~~~ Math.ceil(Math.random()*1000000)%((100-10)+1)+10; ~~~ 获取n~m的随机数  原理   当a与b取余时 余数的范围是(b-1) ~~~ function(n,m){ return Math.ceil(Math.random()*1000000)%((m-n)+1)+n; } ~~~