randomInt [随机的 Int]
返回指定范围内的随机整数。
使用 Math.random()
要生成一个随机数并将其映射到所需范围 Math.floor()
使其成为整数。
typescript
const randomInt = (min, max) =>
Math.floor(Math.random() * (max - min + 1)) + min;
typescript
randomInt(0, 5); // 2
返回指定范围内的随机整数。
使用 Math.random()
要生成一个随机数并将其映射到所需范围 Math.floor()
使其成为整数。
const randomInt = (min, max) =>
Math.floor(Math.random() * (max - min + 1)) + min;
randomInt(0, 5); // 2