function (min, max) { return Math.floor(Math.random() * (max - min)) + min }
如果想获取0-100之间的随机数,则可将函数的min和max分别设置为0和100
获取其他范围内的随机数亦然