Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 547 Bytes

randomNumberInRange.md

File metadata and controls

19 lines (13 loc) · 547 Bytes
标题 标签
randomNumberInRange(随机生成范围内的数值) math,random(数学,随机数)

生成指定范围内的随机数。

  • 使用 Math.random() 生成随机值,使用乘法将其映射到所需范围。
const randomNumberInRange = (min, max) => Math.random() * (max - min) + min;

调用方式:

randomNumberInRange(2, 10); // 6.0211363285087005

应用场景