代码语言:javascript复制
// 六位随机数字
Math.floor(Math.random() * (999999 - 100000)) 100000
// 五位随机数字
Math.floor(Math.random() * (9999 - 1000)) 1000