应用算法:伪随机数专题 算法 2019年8月19日 # 整数区间内伪随机数 function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } https://github.com/chenfanyue/algorithm-javascript 文章标签: Applid Algorithm pseudo random 专题