随机数 范围 const randomInt = (min, max) => Math.floor(Math.random() * (max - min) + min) 随机五位英文加数字 const id = Math.random().toString(36).slice(-5);