1. 区间随机数

function random(min, max) {
    return Math.random() * (max - min) + min;
}

 

2.pass

相关文章: