任意随机整数方法封装[min, max] function getRandom(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }