const code = Math.floor(Math.random() * 1000000).toString().padStart(6, "0");
随机生成6(n)位数字验证码
最新推荐文章于 2024-03-05 17:36:32 发布
const code = Math.floor(Math.random() * 1000000).toString().padStart(6, "0");