1. 区间随机数
function random(min, max) { return Math.random() * (max - min) + min; }
2.pass
工具函数_01
原文:https://www.cnblogs.com/luwei0915/p/14693095.html